summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-28 08:04:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-28 08:04:27 (GMT)
commit283de2b9c18e38c9a573526d6c398ade7dd6f8e9 (patch)
tree3804c8870fca8b8bac7b9328e58284ad471c7977 /Misc
parentc9ad8b7a2384f063dc0a99c652dccd9e7616e14e (diff)
downloadcpython-283de2b9c18e38c9a573526d6c398ade7dd6f8e9.zip
cpython-283de2b9c18e38c9a573526d6c398ade7dd6f8e9.tar.gz
cpython-283de2b9c18e38c9a573526d6c398ade7dd6f8e9.tar.bz2
Issue #9770: curses.ascii predicates now work correctly with negative integers.
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 82f147d..9c972b1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,9 @@ Core and Builtins
Library
-------
+- Issue #9770: curses.ascii predicates now work correctly with negative
+ integers.
+
- Issue #28427: old keys should not remove new values from
WeakValueDictionary when collecting from another thread.