diff options
author | Kirill <iam@python273.pw> | 2022-08-27 19:32:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 19:32:01 (GMT) |
commit | e860e521ec0d84e175269aeb15cf24bd6053ad17 (patch) | |
tree | d7ad039df160a113bbf6516aa806ca6eb6292e2c /Misc | |
parent | 6fbd889d6e937ad255f98b5495b78a06d05640d5 (diff) | |
download | cpython-e860e521ec0d84e175269aeb15cf24bd6053ad17.zip cpython-e860e521ec0d84e175269aeb15cf24bd6053ad17.tar.gz cpython-e860e521ec0d84e175269aeb15cf24bd6053ad17.tar.bz2 |
gh-90467: StreamReaderProtocol - add strong reference to created task (#96323)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-08-27-14-38-49.gh-issue-90467.VOOB0p.rst | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -1442,6 +1442,7 @@ Ram Rachum Jeffrey Rackauckas Jérôme Radix Burton Radons +Kirill (python273) R. Abhilash Raj Shorya Raj Ajith Ramachandran @@ -1987,6 +1988,7 @@ Gordon Worley Darren Worrall Thomas Wouters Daniel Wozniak +Simon Wrede Marcin Niemira Wei Wu Heiko Wundram diff --git a/Misc/NEWS.d/next/Library/2022-08-27-14-38-49.gh-issue-90467.VOOB0p.rst b/Misc/NEWS.d/next/Library/2022-08-27-14-38-49.gh-issue-90467.VOOB0p.rst new file mode 100644 index 0000000..282c0e7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-08-27-14-38-49.gh-issue-90467.VOOB0p.rst @@ -0,0 +1,2 @@ +Fix :class:`asyncio.streams.StreamReaderProtocol` to keep a strong reference +to the created task, so that it's not garbage collected |