[Python-checkins] r86371 - python/branches/py3k/Misc/NEWS

ask.solem python-checkins at python.org
Tue Nov 9 22:14:54 CET 2010


Author: ask.solem
Date: Tue Nov  9 22:14:53 2010
New Revision: 86371

Log:
Added missing NEWS entry for my previous commit (r86370).

Modified:
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Tue Nov  9 22:14:53 2010
@@ -60,6 +60,16 @@
 Library
 -------
 
+- Issue #9244: multiprocessing pool worker processes could terminate
+  unexpectedly if the return value of a task could not be pickled.  Only
+  the ``repr`` of such errors are now sent back, wrapped in an
+  ``MaybeEncodingError`` exception.
+
+- Issue #9244: The ``apply_async()`` and ``map_async()`` methods
+  of ``multiprocessing.Pool`` now accepts a ``error_callback`` argument.
+  This can be a callback with the signature ``callback(exc)``, which will
+  be called if the target raises an exception.
+
 - Issue #10022: The dictionary returned by the ``getpeercert()`` method
   of SSL sockets now has additional items such as ``issuer`` and ``notBefore``.
 


More information about the Python-checkins mailing list