[Zope-CVS] CVS: Zope3 - ut.py:1.4

Guido van Rossum guido@python.org
Tue, 13 Aug 2002 16:28:35 -0400


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv4607

Modified Files:
	ut.py 
Log Message:
Fix syntax error.  Python's comment character is #, not *.


=== Zope3/ut.py 1.3 => 1.4 ===
--- Zope3/ut.py:1.3	Tue Aug 13 16:08:59 2002
+++ Zope3/ut.py	Tue Aug 13 16:28:35 2002
@@ -25,9 +25,9 @@
 # following import and include CleanUp as a base class of your
 # test. It provides a setUp and tearDown that clear global data that
 # has registered with the test cleanup framework.  If your class has
-* its own setUp or tearDown, make sure you call the CleanUp setUp and
-* tearDown from them, or the benefits of using CleanUp will be lost.
-* Don't use CleanUp based tests outside the Zope package.
+# its own setUp or tearDown, make sure you call the CleanUp setUp and
+# tearDown from them, or the benefits of using CleanUp will be lost.
+# Don't use CleanUp based tests outside the Zope package.
 
 # from Zope.Testing.CleanUp import CleanUp # Base class w registry cleanup