summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-08-06 02:05:56 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-08-06 02:05:56 (GMT)
commit8497efeb4064be366a76e50a8650ed4b6dd3fd01 (patch)
tree570fa25975a876863aac029763288b4b7eef61ec /Misc
parent175e0bf8ca4934fd4f360cc403e209b671a162a9 (diff)
downloadcpython-8497efeb4064be366a76e50a8650ed4b6dd3fd01.zip
cpython-8497efeb4064be366a76e50a8650ed4b6dd3fd01.tar.gz
cpython-8497efeb4064be366a76e50a8650ed4b6dd3fd01.tar.bz2
Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0ecbb51..defa802 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -485,6 +485,7 @@ Craig McPheeters
Lambert Meertens
Bill van Melle
Lucas Prado Melo
+Brian Merrell
Luke Mewburn
Mike Meyer
Steven Miale
diff --git a/Misc/NEWS b/Misc/NEWS
index 2423262..9fd2a51 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -354,6 +354,9 @@ Core and Builtins
Library
-------
+- Issue #4660: If a multiprocessing.JoinableQueue.put() was preempted, it was
+ possible to get a spurious 'task_done() called too many times' error.
+
- Issue #6595: The Decimal constructor now allows arbitrary Unicode
decimal digits in input, as recommended by the standard. Previously
it was restricted to accepting [0-9].