From: Neal Norwitz Date: Sat, 29 Dec 2001 00:25:42 +0000 (+0000) Subject: SF Patch #494872 test repr() of a built-in module X-Git-Tag: v2.3c1~6930 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=707690132fc28773843eb154c8c8c1599c4fe5c8;p=thirdparty%2FPython%2Fcpython.git SF Patch #494872 test repr() of a built-in module --- diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index a659002e94ab..89df890fd105 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -199,6 +199,7 @@ class LongReprTest(unittest.TestCase): from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import areallylongpackageandmodulenametotestreprtruncation eq(repr(areallylongpackageandmodulenametotestreprtruncation), "" % areallylongpackageandmodulenametotestreprtruncation.__file__) + eq(repr(sys), "") def test_type(self): eq = self.assertEquals