[Checkins] SVN: BTrees/branches/py3k/ Moar Py3k compat.

Tres Seaver cvs-admin at zope.org
Mon Dec 10 22:30:07 UTC 2012


Log message for revision 128567:
  Moar Py3k compat.

Changed:
  _U  BTrees/branches/py3k/
  U   BTrees/branches/py3k/BTrees/_base.py

-=-
Modified: BTrees/branches/py3k/BTrees/_base.py
===================================================================
--- BTrees/branches/py3k/BTrees/_base.py	2012-12-10 22:30:06 UTC (rev 128566)
+++ BTrees/branches/py3k/BTrees/_base.py	2012-12-10 22:30:07 UTC (rev 128567)
@@ -1086,7 +1086,7 @@
 
         while i > self.index:
             try:
-                self.v = self.it.next()
+                self.v = next(self.it)
             except StopIteration:
                 raise IndexError(i)
             else:



More information about the checkins mailing list