Python Console async/sync with Python Interpreter for PyCharm 2022.1

已回答

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)
> ...

 

0

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.

0

Hi Sergey,

Thank you for your comment! My Python Console behavior returned to previous version. I have voted for the ticket!

0

请先登录再写评论。