Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2afcbf2 commit e912f5aCopy full SHA for e912f5a
1 file changed
Misc/NEWS
@@ -60,6 +60,16 @@ Core and Builtins
60
Library
61
-------
62
63
+- Issue #9244: multiprocessing pool worker processes could terminate
64
+ unexpectedly if the return value of a task could not be pickled. Only
65
+ the ``repr`` of such errors are now sent back, wrapped in an
66
+ ``MaybeEncodingError`` exception.
67
+
68
+- Issue #9244: The ``apply_async()`` and ``map_async()`` methods
69
+ of ``multiprocessing.Pool`` now accepts a ``error_callback`` argument.
70
+ This can be a callback with the signature ``callback(exc)``, which will
71
+ be called if the target raises an exception.
72
73
- Issue #10022: The dictionary returned by the ``getpeercert()`` method
74
of SSL sockets now has additional items such as ``issuer`` and ``notBefore``.
75
0 commit comments