[Zope3-checkins] CVS: Zope3/src/zope/testing - cleanup.py:1.7
Philipp von Weitershausen
philikon at philikon.de
Mon Mar 1 07:55:39 EST 2004
Update of /cvs-repository/Zope3/src/zope/testing
In directory cvs.zope.org:/tmp/cvs-serv10767
Modified Files:
cleanup.py
Log Message:
Use super() in the docstring.
=== Zope3/src/zope/testing/cleanup.py 1.6 => 1.7 ===
--- Zope3/src/zope/testing/cleanup.py:1.6 Fri Feb 13 17:28:22 2004
+++ Zope3/src/zope/testing/cleanup.py Mon Mar 1 07:55:39 2004
@@ -25,7 +25,7 @@
be called, as in::
def tearDown(self):
- CleanUp.tearDown(self)
+ super(Test, self).tearDown()
....
Cleanup routines for global data should be registered by passing them to
More information about the Zope3-Checkins
mailing list