diff options
author | Ask Solem <askh@opera.com> | 2010-11-09 21:14:53 (GMT) |
---|---|---|
committer | Ask Solem <askh@opera.com> | 2010-11-09 21:14:53 (GMT) |
commit | e912f5ab7ada996e5d464c9a4f99638188744c18 (patch) | |
tree | dcc8c2ce7bd5ee2a38c3bcae187933896033fc2a /Misc/NEWS | |
parent | 2afcbf2249a04092b1e7cb8ff29e8505a6b20da4 (diff) | |
download | cpython-e912f5ab7ada996e5d464c9a4f99638188744c18.zip cpython-e912f5ab7ada996e5d464c9a4f99638188744c18.tar.gz cpython-e912f5ab7ada996e5d464c9a4f99638188744c18.tar.bz2 |
Added missing NEWS entry for my previous commit (r86370).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -60,6 +60,16 @@ Core and Builtins 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``. |