[Checkins] SVN: ZODB/trunk/src/ZODB/fsIndex.py Added a missing future import to work with Python 2.5.

Jim Fulton jim at zope.com
Wed Feb 3 17:09:54 EST 2010


Log message for revision 108739:
  Added a missing future import to work with Python 2.5.
  

Changed:
  U   ZODB/trunk/src/ZODB/fsIndex.py

-=-
Modified: ZODB/trunk/src/ZODB/fsIndex.py
===================================================================
--- ZODB/trunk/src/ZODB/fsIndex.py	2010-02-03 20:58:30 UTC (rev 108738)
+++ ZODB/trunk/src/ZODB/fsIndex.py	2010-02-03 22:09:53 UTC (rev 108739)
@@ -39,6 +39,8 @@
 # bytes back before using u64 to convert the data back to (long)
 # integers.
 
+from __future__ import with_statement
+
 import cPickle
 import struct
 



More information about the checkins mailing list