Fix test_pprint random dict ordering.

This commit is contained in:
Florent Xicluna 2012-07-21 12:44:20 +02:00
parent d6da90f93d
commit 6e571d699f
1 changed files with 3 additions and 2 deletions

View File

@ -467,8 +467,9 @@ class QueryTestCase(unittest.TestCase):
'{1: 0, ' + repr(Unorderable) +': 0}')
# Issue 14998: TypeError on tuples with NoneTypes as dict keys.
self.assertEqual(pprint.pformat({(1,): 0, (None,): 0}),
'{(1,): 0, (None,): 0}')
keys = [(1,), (None,)]
self.assertEqual(pprint.pformat(dict.fromkeys(keys, 0)),
'{%r: 0, %r: 0}' % tuple(sorted(keys, key=id)))
class DottedPrettyPrinter(pprint.PrettyPrinter):