[Python-3000-checkins] r64160 - python/branches/py3k/Lib/test/test_pyclbr.py

benjamin.peterson python-3000-checkins at python.org
Thu Jun 12 03:50:40 CEST 2008


Author: benjamin.peterson
Date: Thu Jun 12 03:50:39 2008
New Revision: 64160

Log:
fix test_pyclbr which failed because the new StringIO presented bases it couldn't find


Modified:
   python/branches/py3k/Lib/test/test_pyclbr.py

Modified: python/branches/py3k/Lib/test/test_pyclbr.py
==============================================================================
--- python/branches/py3k/Lib/test/test_pyclbr.py	(original)
+++ python/branches/py3k/Lib/test/test_pyclbr.py	Thu Jun 12 03:50:39 2008
@@ -140,7 +140,7 @@
 
     def test_easy(self):
         self.checkModule('pyclbr')
-        self.checkModule('doctest', ignore=("TestResults",))
+        self.checkModule('doctest', ignore=("TestResults", "_SpoofOut"))
         self.checkModule('rfc822')
         self.checkModule('difflib', ignore=("Match",))
 


More information about the Python-3000-checkins mailing list