diff options
author | Tim Peters <tim@python.org> | 2013-10-09 18:19:21 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-10-09 18:19:21 (GMT) |
commit | cbd4d08880eac3c153b8b8390c608981a986fff1 (patch) | |
tree | d4ddbffc57ad75e6fc4b9f789287f7005b1f99a6 | |
parent | 926099d5ced46ba0dc50ae9ed2e009e180ff05e1 (diff) | |
download | cpython-cbd4d08880eac3c153b8b8390c608981a986fff1.zip cpython-cbd4d08880eac3c153b8b8390c608981a986fff1.tar.gz cpython-cbd4d08880eac3c153b8b8390c608981a986fff1.tar.bz2 |
Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -76,6 +76,8 @@ Core and Builtins Library ------- +- Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. + - Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. - Issue #19137: The pprint module now correctly formats instances of set and |