[Zodb-checkins] CVS: ZODB3 - test.py:1.19

Guido van Rossum guido@python.org
Mon, 30 Sep 2002 14:34:01 -0400


Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv9998

Modified Files:
	test.py 
Log Message:
Add -g option to pychecker options; otherwise pychecker overwrites
missing globals.


=== ZODB3/test.py 1.18 => 1.19 ===
--- ZODB3/test.py:1.18	Mon Sep 30 11:30:59 2002
+++ ZODB3/test.py	Mon Sep 30 14:34:01 2002
@@ -331,7 +331,8 @@
             sys.exit(0)
         elif k == '-C':
             if not os.environ.get('PYCHECKER'):
-                os.environ['PYCHECKER'] = "-e -q" # only errors, skip stdlib
+                # only errors, all globals, skip stdlib
+                os.environ['PYCHECKER'] = "-e -g -q"
             import pychecker.checker
         elif k == '-g':
             gcthresh = int(v)