summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-10 14:21:53 (GMT)
committerGitHub <noreply@github.com>2020-11-10 14:21:53 (GMT)
commit109c17315af124b25853c248f4a9bf00f03036f6 (patch)
tree3c3e9b52e6210a7d791d5d25308d85d08133fabd /Misc/NEWS.d
parentdb087f6d9ef9a7c873cd883ee120126fc0ca0c72 (diff)
downloadcpython-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')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-29-11-17-35.bpo-42183.50ZcIi.rst4
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.