summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim@python.org>2013-10-09 18:21:46 (GMT)
committerTim Peters <tim@python.org>2013-10-09 18:21:46 (GMT)
commit5aaddd92505f48e23fdac4240d96920ee1a4b3d1 (patch)
tree0a25418a96d5844961a24cab4be1152188e10007 /Misc/NEWS
parent213ef6eb07d06392f96a73c2d36e291117ab91f7 (diff)
parentcbd4d08880eac3c153b8b8390c608981a986fff1 (diff)
downloadcpython-5aaddd92505f48e23fdac4240d96920ee1a4b3d1.zip
cpython-5aaddd92505f48e23fdac4240d96920ee1a4b3d1.tar.gz
cpython-5aaddd92505f48e23fdac4240d96920ee1a4b3d1.tar.bz2
Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c42d8d8..ac06b5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
+- Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.
+
- Issue #18716: Deprecate the formatter module.
- Issue #18037: 2to3 now escapes '\u' and '\U' in native strings.