mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Committing Tim's patch for SF bug #983585:
test_repr() fails with id() values that appear negative
This commit is contained in:
parent
ac1075a645
commit
83a6430717
1 changed files with 1 additions and 2 deletions
|
@ -111,8 +111,7 @@ class Repr:
|
|||
# Bugs in x.__repr__() can cause arbitrary
|
||||
# exceptions -- then make up something
|
||||
except:
|
||||
return '<' + x.__class__.__name__ + ' instance at ' + \
|
||||
hex(id(x))[2:] + '>'
|
||||
return '<%s instance at %x>' % (x.__class__.__name__, id(x))
|
||||
if len(s) > self.maxstring:
|
||||
i = max(0, (self.maxstring-3)//2)
|
||||
j = max(0, self.maxstring-3-i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue