Kaydet (Commit) 25847813 authored tarafından Armin Rigo's avatar Armin Rigo

Removing tests that fail because of changes in PyString_InternInPlace(),

as discussed on IRC.  The equivalent tests for the new behavior are in
test_builtin.py.
üst 2ee6a702
......@@ -2293,22 +2293,6 @@ def inherits():
verify(s.lower().__class__ is str)
vereq(s.lower(), base)
s = madstring("x y")
vereq(s, "x y")
verify(intern(s).__class__ is str)
verify(intern(s) is intern("x y"))
vereq(intern(s), "x y")
i = intern("y x")
s = madstring("y x")
vereq(s, i)
verify(intern(s).__class__ is str)
verify(intern(s) is i)
s = madstring(i)
verify(intern(s).__class__ is str)
verify(intern(s) is i)
class madunicode(unicode):
_rev = None
def rev(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment