summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2020-11-10 13:58:31 (GMT)
committerGitHub <noreply@github.com>2020-11-10 13:58:31 (GMT)
commit42d873c63aa9d160c132be4a34599531574db12c (patch)
tree52d68f9f283cfe6c7b91239f7bce075ed1e1f418 /Misc
parent0b9c4c6fcf2b0673fa45ddfa092934a9d5479b8c (diff)
downloadcpython-42d873c63aa9d160c132be4a34599531574db12c.zip
cpython-42d873c63aa9d160c132be4a34599531574db12c.tar.gz
cpython-42d873c63aa9d160c132be4a34599531574db12c.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>
Diffstat (limited to 'Misc')
-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.