[issue47039] Normalize asyncio future and task repr()

2022-03-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue47039] Normalize asyncio future and task repr()

2022-03-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 30b5d41fabad04f9f34d603f1ce2249452c18c71 by Andrew Svetlov in branch 'main': bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950) https://github.com/python/cpython/commit/30b5d41fabad04f9f34d603f1ce2249452c18c71

[issue47039] Normalize asyncio future and task repr()

2022-03-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +30041 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31950 ___ Python tracker ___

[issue47039] Normalize asyncio future and task repr()

2022-03-16 Thread Andrew Svetlov
New submission from Andrew Svetlov : Return `...` in the case of recursive representation. Now the only result is replaced with `...`, all other future properties are still printed. It doesn't follow `repr()` for other stdlib objects. -- components: asyncio messages: 415375 nosy: