[Zodb-checkins] SVN: ZODB/branches/3.4/src/ZODB/Connection.py modifiedInVersion: remove set_trace() added during ZODB sprint.

Tim Peters tim.one at comcast.net
Sun Apr 3 11:19:18 EDT 2005


Log message for revision 29855:
  modifiedInVersion:  remove set_trace() added during ZODB sprint.
  

Changed:
  U   ZODB/branches/3.4/src/ZODB/Connection.py

-=-
Modified: ZODB/branches/3.4/src/ZODB/Connection.py
===================================================================
--- ZODB/branches/3.4/src/ZODB/Connection.py	2005-04-03 10:43:30 UTC (rev 29854)
+++ ZODB/branches/3.4/src/ZODB/Connection.py	2005-04-03 15:19:18 UTC (rev 29855)
@@ -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