diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-06-28 07:01:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 07:01:43 (GMT) |
commit | 01ef1f95dab9c9930ce1a23634a3e5a8331bf3c7 (patch) | |
tree | 34e90b943d0c8b0ccb1daa4866177a4d52894273 /Misc | |
parent | e6391e08bff775a3c10707fd2cfce6963e6ae429 (diff) | |
download | cpython-01ef1f95dab9c9930ce1a23634a3e5a8331bf3c7.zip cpython-01ef1f95dab9c9930ce1a23634a3e5a8331bf3c7.tar.gz cpython-01ef1f95dab9c9930ce1a23634a3e5a8331bf3c7.tar.bz2 |
GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-94298)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-06-26-10-59-15.gh-issue-89988.K8rnmt.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-06-26-10-59-15.gh-issue-89988.K8rnmt.rst b/Misc/NEWS.d/next/Library/2022-06-26-10-59-15.gh-issue-89988.K8rnmt.rst new file mode 100644 index 0000000..811a8d6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-06-26-10-59-15.gh-issue-89988.K8rnmt.rst @@ -0,0 +1 @@ +Fix memory leak in :class:`pickle.Pickler` when looking up :attr:`dispatch_table`. Patch by Kumar Aditya. |