diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-05-14 14:24:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 14:24:20 (GMT) |
commit | d923fdf54bc97baece879179ba4971f632b9722b (patch) | |
tree | 946ce183a3db192a74c491baa24a41ace2f5b59a /Misc | |
parent | 2e8f721c0f275d9d7c018b4a2a66f053cf34bb36 (diff) | |
download | cpython-d923fdf54bc97baece879179ba4971f632b9722b.zip cpython-d923fdf54bc97baece879179ba4971f632b9722b.tar.gz cpython-d923fdf54bc97baece879179ba4971f632b9722b.tar.bz2 |
GH-92804: Fix memory leak in memoryview iterator (gh-92805)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-05-14-13-22-11.gh-issue-92804.rAqpI2.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-05-14-13-22-11.gh-issue-92804.rAqpI2.rst b/Misc/NEWS.d/next/Core and Builtins/2022-05-14-13-22-11.gh-issue-92804.rAqpI2.rst new file mode 100644 index 0000000..7a5fd3f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-05-14-13-22-11.gh-issue-92804.rAqpI2.rst @@ -0,0 +1 @@ +Fix memory leak in ``memoryview`` iterator as it was not finalized at exit. Patch by Kumar Aditya. |