[Zodb-checkins] CVS: ZODB/src/ZODB/FileStorage - fspack.py:1.8

Tim Peters tim.one at comcast.net
Tue Mar 16 16:46:47 EST 2004


Update of /cvs-repository/ZODB/src/ZODB/FileStorage
In directory cvs.zope.org:/tmp/cvs-serv8897/src/ZODB/FileStorage

Modified Files:
	fspack.py 
Log Message:
Removed the _packt decoy from the DataCopier class.  Nothing referenced
it, and the only value a subclass ever set it to was None.


=== ZODB/src/ZODB/FileStorage/fspack.py 1.7 => 1.8 ===
--- ZODB/src/ZODB/FileStorage/fspack.py:1.7	Tue Mar 16 15:51:37 2004
+++ ZODB/src/ZODB/FileStorage/fspack.py	Tue Mar 16 16:46:46 2004
@@ -47,7 +47,6 @@
 
     _file -- file with earlier destination data
     _tfile -- destination file for copied data
-    _packt -- p64() representation of latest pack time
     _pos -- file pos of destination transaction
     _tindex -- maps oid to data record file pos
     _tvindex -- maps version name to data record file pos
@@ -416,7 +415,6 @@
         self._name = path
         self._file = open(path, "rb")
         self._stop = stop
-        self._packt = None
         self.locked = 0
         self._file.seek(0, 2)
         self.file_end = self._file.tell()




More information about the Zodb-checkins mailing list