summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-03-11 00:57:28 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-03-11 00:57:28 (GMT)
commitec4b174de4177298c1421786764170cc62f9b748 (patch)
tree39c324d9fd408ce3ea0d96fbd6dd1bee4cb9d255 /Misc
parent720da571590427a10bbf04cdfe486f4ab6d85156 (diff)
downloadcpython-ec4b174de4177298c1421786764170cc62f9b748.zip
cpython-ec4b174de4177298c1421786764170cc62f9b748.tar.gz
cpython-ec4b174de4177298c1421786764170cc62f9b748.tar.bz2
Issue #17385: Fix quadratic behavior in threading.Condition
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 fd52b1c..4ed9267 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -277,6 +277,9 @@ Core and Builtins
Library
-------
+_ Issue #17385: Fix quadratic behavior in threading.Condition. The FIFO
+ queue now uses a deque instead of a list.
+
- Issue #14645: The email generator classes now produce output using the
specified linesep throughout. Previously if the prolog, epilog, or
body were stored with a different linesep, that linesep was used. This