summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-28 09:03:20 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-28 09:03:20 (GMT)
commitb9a439175451903ab77c71e5b2020dbd1671a77e (patch)
tree05f4e3a27501d29451a57b753c75da6e3e3f9794 /Misc
parentcbb9421347c97b5a443b260118931962783d4efc (diff)
downloadcpython-b9a439175451903ab77c71e5b2020dbd1671a77e.zip
cpython-b9a439175451903ab77c71e5b2020dbd1671a77e.tar.gz
cpython-b9a439175451903ab77c71e5b2020dbd1671a77e.tar.bz2
#10218: return timeout status from Condition.wait, mirroring other primitives' behavior.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b1e40ad..9bbeec2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,8 @@ Core and Builtins
Library
-------
+- Issue #10218: Return timeout status from ``Condition.wait`` in threading.
+
- Issue #7351: Add ``zipfile.BadZipFile`` spelling of the exception name
and deprecate the old name ``zipfile.BadZipfile``.