diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-07-04 06:59:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-04 06:59:22 (GMT) |
commit | 48350412b70c76fa51f488cfc736c80d59b5e8eb (patch) | |
tree | 7614e3921d80f314a1efbb367ffc575833c892c2 /Misc/NEWS.d | |
parent | d3ed2877a798d07df75422afe136b4727e500c99 (diff) | |
download | cpython-48350412b70c76fa51f488cfc736c80d59b5e8eb.zip cpython-48350412b70c76fa51f488cfc736c80d59b5e8eb.tar.gz cpython-48350412b70c76fa51f488cfc736c80d59b5e8eb.tar.bz2 |
bpo-29293: multiprocessing.Condition.notify() lacks parameter `n` (#2480)
* bpo-29293: multiprocessing.Condition.notify() lacks parameter `n`
* Add NEWS blurb
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-06-29-00-07-22.bpo-29293.Z6WZjD.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-06-29-00-07-22.bpo-29293.Z6WZjD.rst b/Misc/NEWS.d/next/Library/2017-06-29-00-07-22.bpo-29293.Z6WZjD.rst new file mode 100644 index 0000000..9ef3ace --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-06-29-00-07-22.bpo-29293.Z6WZjD.rst @@ -0,0 +1,5 @@ +Add missing parameter "n" on multiprocessing.Condition.notify(). + +The doc claims multiprocessing.Condition behaves like threading.Condition, +but its notify() method lacked the optional "n" argument (to specify the +number of sleepers to wake up) that threading.Condition.notify() accepts. |