Commit f2f7af0d authored by Tim Peters's avatar Tim Peters

Removed the _packt decoy from the DataCopier class. Nothing referenced

it, and the only value a subclass ever set it to was None.
parent da0182e8
......@@ -47,7 +47,6 @@ class DataCopier(FileStorageFormatter):
_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 @@ class FileStoragePacker(FileStorageFormatter):
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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment