[Zodb-checkins] CVS: StandaloneZODB/ExtensionClass/test/output - test_MultiMapping:1.2
Guido van Rossum
guido@python.org
Fri, 7 Sep 2001 14:48:32 -0400
Update of /cvs-repository/StandaloneZODB/ExtensionClass/test/output
In directory cvs.zope.org:/tmp/cvs-serv3691/output
Modified Files:
test_MultiMapping
Log Message:
Use the pprint module to print dictionaries. It happens to print the
keys in sorted order, which makes the output independent from the hash
table order (which can differ bewteen Python versions).
=== StandaloneZODB/ExtensionClass/test/output/test_MultiMapping 1.1 => 1.2 ===
2
{'spam': 3}
-{'spam': 1, 'eggs': 2}
+{'eggs': 2, 'spam': 1}