diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-29 08:45:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 08:45:19 (GMT) |
commit | 35f6301d68bdb0517be284421782d64407dfe72c (patch) | |
tree | 2b25b22aa2800545bdcac6bbfe9ab36472e6542a /Misc | |
parent | 0dac68f1e593c11612ed54af9edb865d398f3b05 (diff) | |
download | cpython-35f6301d68bdb0517be284421782d64407dfe72c.zip cpython-35f6301d68bdb0517be284421782d64407dfe72c.tar.gz cpython-35f6301d68bdb0517be284421782d64407dfe72c.tar.bz2 |
bpo-10978: Semaphores can release multiple threads at a time (GH-15588)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-08-29-01-19-13.bpo-10978.J6FQYY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-29-01-19-13.bpo-10978.J6FQYY.rst b/Misc/NEWS.d/next/Library/2019-08-29-01-19-13.bpo-10978.J6FQYY.rst new file mode 100644 index 0000000..2b8f300 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-08-29-01-19-13.bpo-10978.J6FQYY.rst @@ -0,0 +1,2 @@ +Semaphores and BoundedSemaphores can now release more than one waiting +thread at a time. |