From: Tim Peters Date: Thu, 16 Aug 2001 19:50:51 +0000 (+0000) Subject: test_descr started breaking in yet another way in the same place. X-Git-Tag: v2.2a3~495 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d2dded044314c0ff881217c70a532b10170b64d;p=thirdparty%2FPython%2Fcpython.git test_descr started breaking in yet another way in the same place. --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 69ec66a71b6b..4d1f817e1ff6 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -881,7 +881,9 @@ def specials(): verify(c1 != c2) verify(not c1 != c1) verify(not c1 == c2) - verify(str(c1).startswith('= 0) verify(str(c1) == repr(c1)) verify(-1 not in c1) for i in range(10): @@ -902,7 +904,9 @@ def specials(): verify(d1 != d2) verify(not d1 != d1) verify(not d1 == d2) - verify(str(d1).startswith('= 0) verify(str(d1) == repr(d1)) verify(-1 not in d1) for i in range(10):