summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-22 00:16:56 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-22 00:16:56 (GMT)
commit5f8b0f5c59f273c195fb20e18d1847b868288b64 (patch)
tree82f4425a7fb00da557c8e82cbe6aa238a69f8d22 /Misc
parentba723200ce3effa5bea05a10fd01e3bb89ea8da7 (diff)
downloadcpython-5f8b0f5c59f273c195fb20e18d1847b868288b64.zip
cpython-5f8b0f5c59f273c195fb20e18d1847b868288b64.tar.gz
cpython-5f8b0f5c59f273c195fb20e18d1847b868288b64.tar.bz2
Issue #19664: test_userdict's repr test no longer depends on the order
of dict elements. Original patch by Serhiy Storchaka
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1f0680..d6158d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -306,6 +306,9 @@ Library
Tests
-----
+- Issue #19664: test_userdict's repr test no longer depends on the order
+ of dict elements.
+
- Issue #19440: Clean up test_capi by removing an unnecessary __future__
import, converting from test_main to unittest.main, and running the
_testcapi module tests as subTests of a unittest TestCase method.