From: Benjamin Peterson Date: Thu, 12 Jun 2008 01:50:39 +0000 (+0000) Subject: fix test_pyclbr which failed because the new StringIO presented bases it couldn't... X-Git-Tag: v3.0b1~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5b41eb1e63495c068949a62da630d00a672cfb6;p=thirdparty%2FPython%2Fcpython.git fix test_pyclbr which failed because the new StringIO presented bases it couldn't find --- diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index e8eb94ee3232..77b691db765a 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -140,7 +140,7 @@ class PyclbrTest(TestCase): 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",))