[Zope3-checkins] CVS: Zope3 - test.py:1.94
Fred L. Drake, Jr.
fred at zope.com
Wed Mar 17 17:04:08 EST 2004
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv4121
Modified Files:
test.py
Log Message:
argh!
we can't do that because then the zLOG and zdaemon tests fail
=== Zope3/test.py 1.93 => 1.94 ===
--- Zope3/test.py:1.93 Wed Mar 17 16:05:34 2004
+++ Zope3/test.py Wed Mar 17 17:04:07 2004
@@ -720,17 +720,17 @@
elif level:
logging.root.setLevel(int(level))
- try:
- import zLOG
- except ImportError:
- pass
- else:
- # zLOG is available, so we need to make sure it doesn't
- # re-initialize anything we set up. If we don't, zLOG assumes
- # it can clobber everything the first time it's initialized.
- def null_initializer():
- pass
- zLOG.set_initializer(null_initializer)
+## try:
+## import zLOG
+## except ImportError:
+## pass
+## else:
+## # zLOG is available, so we need to make sure it doesn't
+## # re-initialize anything we set up. If we don't, zLOG assumes
+## # it can clobber everything the first time it's initialized.
+## def null_initializer():
+## pass
+## zLOG.set_initializer(null_initializer)
files = find_tests(module_filter)
files.sort()
More information about the Zope3-Checkins
mailing list