[Python-3000-checkins] r55307 - python/branches/p3yk/Lib/test/test_pyclbr.py

neal.norwitz python-3000-checkins at python.org
Mon May 14 04:50:48 CEST 2007


Author: neal.norwitz
Date: Mon May 14 04:50:45 2007
New Revision: 55307

Modified:
   python/branches/p3yk/Lib/test/test_pyclbr.py
Log:
Get test_pyclbr passing again after getstatus was removed from commands.  This "test case" was weird since it was just importing a seemingly random module.  Remove the import

Modified: python/branches/p3yk/Lib/test/test_pyclbr.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_pyclbr.py	(original)
+++ python/branches/p3yk/Lib/test/test_pyclbr.py	Mon May 14 04:50:45 2007
@@ -11,10 +11,6 @@
 StaticMethodType = type(staticmethod(lambda: None))
 ClassMethodType = type(classmethod(lambda c: None))
 
-# This next line triggers an error on old versions of pyclbr.
-
-from commands import getstatus
-
 # Here we test the python class browser code.
 #
 # The main function in this suite, 'testModule', compares the output


More information about the Python-3000-checkins mailing list