summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-07-04 06:59:22 (GMT)
committerGitHub <noreply@github.com>2017-07-04 06:59:22 (GMT)
commit48350412b70c76fa51f488cfc736c80d59b5e8eb (patch)
tree7614e3921d80f314a1efbb367ffc575833c892c2 /Misc/NEWS.d
parentd3ed2877a798d07df75422afe136b4727e500c99 (diff)
downloadcpython-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.rst5
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.