Python Console async/sync with Python Interpreter for PyCharm 2022.1
Answered
Python Console is async with Python Interpreter for PyCharm 2022.1. Is there any way to back previous version console behavior (sync with Interpreter)? I am using Python 3.8.
[PyCharm 2022.1]
> import time
> time.sleep(10)
(console back soon)
> ... <- I cannot know previous command is running or not
[PyCharm 2021.2]
> import time
> time.sleep(10)
(wait for 10 secs)
> ...
Please sign in to leave a comment.
You can disable it in Registry. See the description of https://youtrack.jetbrains.com/issue/PY-51667/Settings-option-instead-of-Registry-flag-to-disable-Command-Queu
Feel free to vote for that ticket and comment.
Hi Sergey,
Thank you for your comment! My Python Console behavior returned to previous version. I have voted for the ticket!