[Zope3-checkins] CVS: Zope3/src/zope/testing - cleanup.py:1.3
Philipp von Weitershausen
philikon at philikon.de
Sat Jan 10 06:01:17 EST 2004
Update of /cvs-repository/Zope3/src/zope/testing
In directory cvs.zope.org:/tmp/cvs-serv31767/src/zope/testing
Modified Files:
cleanup.py
Log Message:
Make CleanUp and all subclasses (most importantly PlacelessSetup) a
new-style class.
=== Zope3/src/zope/testing/cleanup.py 1.2 => 1.3 ===
--- Zope3/src/zope/testing/cleanup.py:1.2 Wed Dec 25 09:15:34 2002
+++ Zope3/src/zope/testing/cleanup.py Sat Jan 10 06:01:15 2004
@@ -39,6 +39,8 @@
$Id$
"""
+__metaclass__ = type
+
_cleanups = []
def addCleanUp(func, args=(), kw={}):
More information about the Zope3-Checkins
mailing list