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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=707690132fc28773843eb154c8c8c1599c4fe5c8;p=python 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 a659002e94..89df890fd1 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