-
-
Notifications
You must be signed in to change notification settings - Fork 314
PyScripter freezes #1372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
PyScripter also has one: The red square button. Using the remote engine run the following: i = 0
while True:
i += 1 You can then interrupt by pressing the Abort key. or the following: import time
while True:
print('hello')
time.sleep(0.1) # sleep for 0.1 seconds You can also interrupt by pressing the Abort key. The problem with while True:
print('hello') is that PyScripter is too busy printing to handle the processing of the Abort key. I know it is not perfect but this is a corner case. In most real-life scripts the Abort button is available. |
I have provided it a fix. Now the Abort command works well in all cases. |
Great! When is next release awaiting?)) |
Soon! But I could provide you with an updated PyScripter.exe so that you can try it immediately. However, I want do deal with #1369 first. |
If you try this code, the program is freezes.
for example, pyCharm not freezes and have STOP button...
Please improve that))
The text was updated successfully, but these errors were encountered: