[Checkins] SVN: zc.fsutils/branches/dev/src/zc/fsutil/references.py use fast mode so as not to accumulate a memo inmemory

Jim Fulton jim at zope.com
Tue Sep 25 19:33:28 EDT 2007


Log message for revision 80065:
  use fast mode so as not to accumulate a memo inmemory

Changed:
  U   zc.fsutils/branches/dev/src/zc/fsutil/references.py

-=-
Modified: zc.fsutils/branches/dev/src/zc/fsutil/references.py
===================================================================
--- zc.fsutils/branches/dev/src/zc/fsutil/references.py	2007-09-25 23:29:28 UTC (rev 80064)
+++ zc.fsutils/branches/dev/src/zc/fsutil/references.py	2007-09-25 23:33:28 UTC (rev 80065)
@@ -28,6 +28,7 @@
     of references.
     """
     pickler = cPickle.Pickler(open(output, 'w'))
+    pickler.fast = True
     
     for trans in iterator:
         trandata = trans.tid, trans._tpos



More information about the Checkins mailing list