diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-24 21:41:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-24 21:41:33 (GMT) |
commit | c2824d41c32c3be5f100acdb1ff9f71ba7336b60 (patch) | |
tree | ecc2204a2c49dbbb3eba73212218fbf244b725a9 /Misc | |
parent | a82aa55b5e5448f93fd1827d97752e19877db077 (diff) | |
download | cpython-c2824d41c32c3be5f100acdb1ff9f71ba7336b60.zip cpython-c2824d41c32c3be5f100acdb1ff9f71ba7336b60.tar.gz cpython-c2824d41c32c3be5f100acdb1ff9f71ba7336b60.tar.bz2 |
Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the
lock was not acquired.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -113,6 +113,9 @@ Core and Builtins Library ------- +- Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the + lock was not acquired. + - Issue #11258: Speed up ctypes.util.find_library() under Linux by a factor of 5 to 10. Initial patch by Jonas H. |