[Zodb-checkins] SVN: ZODB/tags/3.4.0a1-Zope3/src/ZODB/Connection.py
Merge rev 29855 from 3.4 branch.
Tim Peters
tim.one at comcast.net
Sun Apr 3 11:32:28 EDT 2005
Log message for revision 29857:
Merge rev 29855 from 3.4 branch.
modifiedInVersion: remove set_trace() added during ZODB sprint.
Changed:
U ZODB/tags/3.4.0a1-Zope3/src/ZODB/Connection.py
-=-
Modified: ZODB/tags/3.4.0a1-Zope3/src/ZODB/Connection.py
===================================================================
--- ZODB/tags/3.4.0a1-Zope3/src/ZODB/Connection.py 2005-04-03 15:21:02 UTC (rev 29856)
+++ ZODB/tags/3.4.0a1-Zope3/src/ZODB/Connection.py 2005-04-03 15:32:28 UTC (rev 29857)
@@ -24,8 +24,8 @@
from persistent import PickleCache
# interfaces
-from persistent.interfaces import IPersistentDataManager
-from ZODB.interfaces import IConnection
+from persistent.interfaces import IPersistentDataManager
+from ZODB.interfaces import IConnection
from transaction.interfaces import IDataManager
from zope.interface import implements
@@ -563,7 +563,7 @@
def getDebugInfo(self):
"""Returns a tuple with different items for debugging the
connection.
- """
+ """
return self._debug_info
def setDebugInfo(self, *args):
@@ -822,13 +822,12 @@
def modifiedInVersion(self, oid):
"""Returns the version the object with the given oid was modified in.
- If it wasn't modified in a version, the current version of this
+ If it wasn't modified in a version, the current version of this
connection is returned.
"""
try:
return self._db.modifiedInVersion(oid)
except KeyError:
- import pdb; pdb.set_trace()
return self.getVersion()
def getVersion(self):
More information about the Zodb-checkins
mailing list