summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_futures2.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() ↵Andrew Svetlov2020-11-101-0/+18
(GH-23020) The overflow occurs under some circumstances when a task or future recursively returns itself. Co-authored-by: Kyle Stanley <aeros167@gmail.com>