[Zodb-checkins] CVS: StandaloneZODB/ZEO - TransactionBuffer.py:1.3.2.2
Jeremy Hylton
jeremy@zope.com
Wed, 16 Jan 2002 20:41:23 -0500
Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv14278
Modified Files:
Tag: Standby-branch
TransactionBuffer.py
Log Message:
Change some XXX comments to clearer non-XXX comments.
=== StandaloneZODB/ZEO/TransactionBuffer.py 1.3.2.1 => 1.3.2.2 ===
"""
-# XXX Figure out what a sensible storage format is
-
-# XXX A faster implementation might store trans data in memory until
-# it reaches a certain size.
+# A faster implementation might store trans data in memory until it
+# reaches a certain size.
import tempfile
import cPickle
@@ -43,7 +41,7 @@
self.count = 0
self.size = 0
- # XXX unchecked constraints:
+ # unchecked constraints:
# 1. can't call store() after begin_iterate()
# 2. must call clear() after iteration finishes