diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-10 14:21:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 14:21:53 (GMT) |
commit | 109c17315af124b25853c248f4a9bf00f03036f6 (patch) | |
tree | 3c3e9b52e6210a7d791d5d25308d85d08133fabd /Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst | |
parent | db087f6d9ef9a7c873cd883ee120126fc0ca0c72 (diff) | |
download | cpython-109c17315af124b25853c248f4a9bf00f03036f6.zip cpython-109c17315af124b25853c248f4a9bf00f03036f6.tar.gz cpython-109c17315af124b25853c248f4a9bf00f03036f6.tar.bz2 |
bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-23020)
The overflow occurs under some circumstances when a task or future
recursively returns itself.
Co-authored-by: Kyle Stanley <aeros167@gmail.com>
(cherry picked from commit 42d873c63aa9d160c132be4a34599531574db12c)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst b/Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst new file mode 100644 index 0000000..f6d7653 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst @@ -0,0 +1,4 @@ +Fix a stack overflow error for asyncio Task or Future repr(). + +The overflow occurs under some circumstances when a Task or Future +recursively returns itself. |