diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2020-05-08 10:54:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 10:54:38 (GMT) |
commit | d2c349b190bcba21a4a38e6520a48ad97a9f1529 (patch) | |
tree | 0e4c961489c74a0d75d94e5852d3185d71cefb40 /Misc | |
parent | 02fa0ea9c1073e4476c9bde3d7112f5dd964aa57 (diff) | |
download | cpython-d2c349b190bcba21a4a38e6520a48ad97a9f1529.zip cpython-d2c349b190bcba21a4a38e6520a48ad97a9f1529.tar.gz cpython-d2c349b190bcba21a4a38e6520a48ad97a9f1529.tar.bz2 |
bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)
This fixes a possible memory leak in the C implementation of
asyncio.Task.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-05-08-12-51.bpo-40559.112wwa.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-05-08-12-51.bpo-40559.112wwa.rst b/Misc/NEWS.d/next/Library/2020-05-05-08-12-51.bpo-40559.112wwa.rst new file mode 100644 index 0000000..1584635 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-05-08-12-51.bpo-40559.112wwa.rst @@ -0,0 +1 @@ +Fix possible memory leak in the C implementation of :class:`asyncio.Task`.
\ No newline at end of file |