summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-16 19:50:51 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-16 19:50:51 (GMT)
commit4d2dded044314c0ff881217c70a532b10170b64d (patch)
treed5deb5ababbb946056edb2028a1a2b6ea8bb2b4a /Lib
parent76e6963fc122fd3ed17794b4f7db6b1f20efeeab (diff)
downloadcpython-4d2dded044314c0ff881217c70a532b10170b64d.zip
cpython-4d2dded044314c0ff881217c70a532b10170b64d.tar.gz
cpython-4d2dded044314c0ff881217c70a532b10170b64d.tar.bz2
test_descr started breaking in yet another way in the same place.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_descr.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 69ec66a..4d1f817 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('<C object at '))
+ # Note that the module name appears in str/repr, and that varies
+ # depending on whether this test is run standalone or from a framework.
+ verify(str(c1).find('C instance at ') >= 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('<D object at '))
+ # Note that the module name appears in str/repr, and that varies
+ # depending on whether this test is run standalone or from a framework.
+ verify(str(d1).find('D instance at ') >= 0)
verify(str(d1) == repr(d1))
verify(-1 not in d1)
for i in range(10):