[Zope3-checkins] CVS: ZODB4/Transaction - Transaction.py:1.3

Jeremy Hylton jeremy@zope.com
Fri, 15 Nov 2002 16:42:09 -0500


Update of /cvs-repository/ZODB4/Transaction
In directory cvs.zope.org:/tmp/cvs-serv32676/Transaction

Modified Files:
	Transaction.py 
Log Message:
New-style classes by default.


=== ZODB4/Transaction/Transaction.py 1.2 => 1.3 ===
--- ZODB4/Transaction/Transaction.py:1.2	Thu Sep  5 15:53:00 2002
+++ ZODB4/Transaction/Transaction.py	Fri Nov 15 16:42:09 2002
@@ -1,6 +1,8 @@
 # XXX The fact that this module has the same name as the package makes
 # explicit imports impossible elsewhere.  Pick a new name?
 
+__metaclass__ = type
+
 from ITransaction import ITransaction
 
 class Set(dict):