[Zodb-checkins] CVS: ZODB3/ZODB/tests - test_datamanageradapter.py:1.1.2.3

Jim Fulton jim at zope.com
Fri Jan 23 11:41:25 EST 2004


Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv21470/src/ZODB/tests

Modified Files:
      Tag: zope3-zodb3-devel-branch
	test_datamanageradapter.py 
Log Message:
Changed the signature for tpc_begin so that the subtransaction
argument defaults to False.


=== ZODB3/ZODB/tests/test_datamanageradapter.py 1.1.2.2 => 1.1.2.3 ===
--- ZODB3/ZODB/tests/test_datamanageradapter.py:1.1.2.2	Fri Jan 23 09:54:31 2004
+++ ZODB3/ZODB/tests/test_datamanageradapter.py	Fri Jan 23 11:41:23 2004
@@ -50,7 +50,7 @@
     The transaction will call tpc_begin:
 
     >>> t1 = '1'
-    >>> jar.tpc_begin(t1, 0) # 0 -> top-level txn
+    >>> jar.tpc_begin(t1)
 
     Then the transaction will call commit on the jar:
 
@@ -154,7 +154,7 @@
     The transaction will call tpc_begin:
 
     >>> t1 = '1'
-    >>> jar.tpc_begin(t1, 0) # 0 -> top-level txn
+    >>> jar.tpc_begin(t1)
 
     Then the transaction will call commit on the jar:
 
@@ -205,7 +205,7 @@
     The transaction will call tpc_begin:
 
     >>> t1 = '1'
-    >>> jar.tpc_begin(t1, 0) # 0 -> top-level txn
+    >>> jar.tpc_begin(t1)
 
     Then the transaction will call commit on the jar:
 




More information about the Zodb-checkins mailing list