summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-01-17 19:02:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-01-17 19:02:14 (GMT)
commit1285c9b7829a6ae3a1267e7676b1bc2c5ce11f96 (patch)
tree50e50f3d539ca7b4463bed0926d8ff0cf6927683 /Misc
parent26795baaa812c74087e97f9119ec143451e23daa (diff)
downloadcpython-1285c9b7829a6ae3a1267e7676b1bc2c5ce11f96.zip
cpython-1285c9b7829a6ae3a1267e7676b1bc2c5ce11f96.tar.gz
cpython-1285c9b7829a6ae3a1267e7676b1bc2c5ce11f96.tar.bz2
Issue #21817: When an exception is raised in a task submitted to a ProcessPoolExecutor, the remote traceback is now displayed in the parent process.
Patch by Claudiu Popa.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 82343d7..c0194d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -203,6 +203,10 @@ Core and Builtins
Library
-------
+- Issue #21817: When an exception is raised in a task submitted to a
+ ProcessPoolExecutor, the remote traceback is now displayed in the
+ parent process. Patch by Claudiu Popa.
+
- Issue #15955: Add an option to limit output size when decompressing LZMA
data. Patch by Nikolaus Rath and Martin Panter.