diff options
author | Tim Peters <tim@python.org> | 2013-10-09 18:25:11 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-10-09 18:25:11 (GMT) |
commit | b82300b02d01af243c00e232d32a21bb6987af81 (patch) | |
tree | 1683607bbd48d4f5a105901a8225de594ee7d215 | |
parent | 32dc14108858db0c7d1056f10d8872d2943fb07b (diff) | |
download | cpython-b82300b02d01af243c00e232d32a21bb6987af81.zip cpython-b82300b02d01af243c00e232d32a21bb6987af81.tar.gz cpython-b82300b02d01af243c00e232d32a21bb6987af81.tar.bz2 |
Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -32,6 +32,9 @@ 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 empty set and frozenset |