[Zodb-checkins] CVS: ZODB3/ZODB - Connection.py:1.114.2.4

Fred L. Drake, Jr. fred at zope.com
Thu Jan 22 15:05:52 EST 2004


Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv2441

Modified Files:
      Tag: zope3-zodb3-devel-branch
	Connection.py 
Log Message:
Added some verbosity to some doc strings.


=== ZODB3/ZODB/Connection.py 1.114.2.3 => 1.114.2.4 ===
--- ZODB3/ZODB/Connection.py:1.114.2.3	Fri Jan 16 10:43:27 2004
+++ ZODB3/ZODB/Connection.py	Thu Jan 22 15:05:51 2004
@@ -314,7 +314,7 @@
             self._handle_serial(s, oid)
 
     def commit_sub(self, t):
-        """Commit all work done in subtransactions"""
+        """Commit all work done in all subtransactions for this transaction"""
         tmp=self._tmp
         if tmp is None: return
         src=self._storage
@@ -344,7 +344,7 @@
             self._handle_serial(s, oid, change=0)
 
     def abort_sub(self, t):
-        """Abort work done in subtransactions"""
+        """Abort work done in all subtransactions for this transaction"""
         tmp=self._tmp
         if tmp is None: return
         src=self._storage




More information about the Zodb-checkins mailing list