mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions
This commit is contained in:
commit
70897ec54c
2 changed files with 4 additions and 1 deletions
|
|
@ -283,7 +283,7 @@ class Server(object):
|
|||
try:
|
||||
send(msg)
|
||||
except Exception as e:
|
||||
send(('#UNSERIALIZABLE', repr(msg)))
|
||||
send(('#UNSERIALIZABLE', format_exc()))
|
||||
except Exception as e:
|
||||
util.info('exception in thread serving %r',
|
||||
threading.current_thread().name)
|
||||
|
|
|
|||
|
|
@ -248,6 +248,9 @@ Library
|
|||
- Issue #6766: Distributed reference counting added to multiprocessing
|
||||
to support nesting of shared values / proxy objects.
|
||||
|
||||
- Issue #21201: Improves readability of multiprocessing error message. Thanks
|
||||
to Wojciech Walczak for patch.
|
||||
|
||||
C API
|
||||
-----
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue