Kaydet (Commit) 83a64307 authored tarafından Fred Drake's avatar Fred Drake

Committing Tim's patch for SF bug #983585:

test_repr() fails with id() values that appear negative
üst ac1075a6
...@@ -111,8 +111,7 @@ class Repr: ...@@ -111,8 +111,7 @@ class Repr:
# Bugs in x.__repr__() can cause arbitrary # Bugs in x.__repr__() can cause arbitrary
# exceptions -- then make up something # exceptions -- then make up something
except: except:
return '<' + x.__class__.__name__ + ' instance at ' + \ return '<%s instance at %x>' % (x.__class__.__name__, id(x))
hex(id(x))[2:] + '>'
if len(s) > self.maxstring: if len(s) > self.maxstring:
i = max(0, (self.maxstring-3)//2) i = max(0, (self.maxstring-3)//2)
j = max(0, self.maxstring-3-i) j = max(0, self.maxstring-3-i)
......
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