[Zodb-checkins] CVS: ZODB3/ZopeUndo - Prefix.py:1.2
Jeremy Hylton
jeremy at zope.com
Wed Dec 24 11:02:29 EST 2003
Update of /cvs-repository/ZODB3/ZopeUndo
In directory cvs.zope.org:/tmp/cvs-serv27465/ZopeUndo
Modified Files:
Prefix.py
Log Message:
Merge MVCC branch to the HEAD.
=== ZODB3/ZopeUndo/Prefix.py 1.1 => 1.2 ===
--- ZODB3/ZopeUndo/Prefix.py:1.1 Thu Oct 3 13:41:52 2002
+++ ZODB3/ZopeUndo/Prefix.py Wed Dec 24 11:01:57 2003
@@ -36,5 +36,4 @@
def __cmp__(self, o):
l, v = self.value
- rval = cmp(o[:l], v)
- return rval
+ return cmp(o[:l], v)
More information about the Zodb-checkins
mailing list