mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #25548: Showing memory address of class objects in repl
This commit is contained in:
parent
409482251b
commit
5801ecb440
20 changed files with 106 additions and 92 deletions
|
@ -848,12 +848,11 @@ bytearray(b'\\x00\\x01\\x02\\x03'
|
|||
|
||||
def test_default_dict(self):
|
||||
d = collections.defaultdict(int)
|
||||
self.assertEqual(pprint.pformat(d, width=1), "defaultdict(<class 'int'>, {})")
|
||||
self.assertRegex(pprint.pformat(d, width=1), r"defaultdict\(<class 'int' at 0x.+>, {}\)")
|
||||
words = 'the quick brown fox jumped over a lazy dog'.split()
|
||||
d = collections.defaultdict(int, zip(words, itertools.count()))
|
||||
self.assertEqual(pprint.pformat(d),
|
||||
"""\
|
||||
defaultdict(<class 'int'>,
|
||||
self.assertRegex(pprint.pformat(d),
|
||||
r"""defaultdict\(<class 'int' at 0x.+>,
|
||||
{'a': 6,
|
||||
'brown': 2,
|
||||
'dog': 8,
|
||||
|
@ -862,7 +861,7 @@ defaultdict(<class 'int'>,
|
|||
'lazy': 7,
|
||||
'over': 5,
|
||||
'quick': 1,
|
||||
'the': 0})""")
|
||||
'the': 0}\)""")
|
||||
|
||||
def test_counter(self):
|
||||
d = collections.Counter()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue