summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-26 06:51:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-26 06:51:33 (GMT)
commitaa4c36fbbb47fe54d578cb7f04f53179360e5aa7 (patch)
treefae7bf62473c76949f1037bf1f3ca1d8c0358e69 /Misc
parentf3fa308817a578c8809c70f6b24b1c489eeef803 (diff)
downloadcpython-aa4c36fbbb47fe54d578cb7f04f53179360e5aa7.zip
cpython-aa4c36fbbb47fe54d578cb7f04f53179360e5aa7.tar.gz
cpython-aa4c36fbbb47fe54d578cb7f04f53179360e5aa7.tar.bz2
Issue #23775: pprint() of OrderedDict now outputs the same representation
as repr().
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 ef2dd3d..5fa6b72 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #23775: pprint() of OrderedDict now outputs the same representation
+ as repr().
+
- Issue #23765: Removed IsBadStringPtr calls in ctypes
- Issue #22364: Improved some re error messages using regex for hints.