[issue46223] asyncio cause infinite loop during debug

2022-03-17 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed by #47039 -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Normalize asyncio future and task repr() ___ Python tracker

[issue46223] asyncio cause infinite loop during debug

2022-01-13 Thread aaron
aaron added the comment: '@reprlib.recursive_repr' decorator to 'events.Handle.__repr__()' could you tell me which file should I change? and why? -- ___ Python tracker ___

[issue46223] asyncio cause infinite loop during debug

2022-01-13 Thread aaron
aaron added the comment: "When running code in debug mode" means we're debug the code. We have used both vscode and pycharm. Same result. -- ___ Python tracker ___

[issue46223] asyncio cause infinite loop during debug

2022-01-08 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +kumaraditya303 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46223] asyncio cause infinite loop during debug

2022-01-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: I guess applying '@reprlib.recursive_repr' decorator to 'events.Handle.__repr__()' function can help. Could you check, please? -- versions: +Python 3.10, Python 3.11 ___ Python tracker

[issue46223] asyncio cause infinite loop during debug

2022-01-08 Thread Nikita Sobolev
Nikita Sobolev added the comment: Just to clarify. What do you mean by "When running code in debug mode"? Do you use some debugger like `pdb` or pycharm? -- nosy: +sobolevn ___ Python tracker

[issue46223] asyncio cause infinite loop during debug

2022-01-07 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing

[issue46223] asyncio cause infinite loop during debug

2022-01-01 Thread aaron
New submission from aaron : When running code in debug mode, asyncio sometimes enter into infinite loop, shows as the following: ``` Current thread 0x7f1c15fc5180 (most recent call first): File "/root/miniconda3/envs/omicron/lib/python3.9/asyncio/events.py", line 58 in __repr__ File