Issue #25548: Showing memory address of class objects in repl

This commit is contained in:
Kushal Das 2016-06-04 16:21:13 -07:00
parent 409482251b
commit 5801ecb440
20 changed files with 106 additions and 92 deletions

View file

@ -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()