diff options
author | Raymond Hettinger <python@rcn.com> | 2013-03-11 00:57:28 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-03-11 00:57:28 (GMT) |
commit | ec4b174de4177298c1421786764170cc62f9b748 (patch) | |
tree | 39c324d9fd408ce3ea0d96fbd6dd1bee4cb9d255 /Misc | |
parent | 720da571590427a10bbf04cdfe486f4ab6d85156 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |