diff options
author | themylogin <themylogin@gmail.com> | 2022-05-02 20:24:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 20:24:39 (GMT) |
commit | 9c204b148fad9742ed19b3bce173073cdec79819 (patch) | |
tree | 1be1a2b9f6c7fb8317c2c5a183bd5bdde8506b53 /Misc | |
parent | c96da83a8ed020c026c3f080e0b646f553524c85 (diff) | |
download | cpython-9c204b148fad9742ed19b3bce173073cdec79819.zip cpython-9c204b148fad9742ed19b3bce173073cdec79819.tar.gz cpython-9c204b148fad9742ed19b3bce173073cdec79819.tar.bz2 |
bpo-46787: Fix `ProcessPoolExecutor exception` memory leak (GH-31408) (#31408)
Do not store `ProcessPoolExecutor` work item exception traceback that prevents
exception frame locals from being garbage collected.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-02-18-20-09-29.bpo-46787.juwWc0.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-02-18-20-09-29.bpo-46787.juwWc0.rst b/Misc/NEWS.d/next/Library/2022-02-18-20-09-29.bpo-46787.juwWc0.rst new file mode 100644 index 0000000..cf167ff --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-18-20-09-29.bpo-46787.juwWc0.rst @@ -0,0 +1 @@ +Fix :class:`concurrent.futures.ProcessPoolExecutor` exception memory leak |