开发者

PyScripter - cannot termiate Run with KeyboardInterrupt

开发者 https://www.devze.com 2022-12-19 18:28 出处:网络
I write alot of small apps where I use try: print \"always does this until I Ctrl+C\" Except KeyboardInterrupt:

I write alot of small apps where I use

try:
   print "always does this until I Ctrl+C"


Except KeyboardInterrupt:
   print "finish program"

I've just began to move away from using IDLE and booted up PyScripter. However CTRL+C no longer works. Is it possible t开发者_如何学JAVAo still send in a KeyboardInterrupt while using the built-in interpreter?


In PyScripter if you just want to terminate a running program you can always re-initialize the remote engine:

  • Application Run Menu > Python Engine > Reinitialize Python Engine or
  • Interpreter context menu > Python Engine > Reinitialize Python Engine or
  • Keyboard shortcut CTRL-F2

Source, Psyscripter Author


I keep answering my own questions, but I believe they are valid..

The PyScripter google group has one implementation where they import a progress bar and kill it, simulating an interrupt. however, this is not the same as a keyboard interrupt. Looks like i'm out of luck until a new implementation.

Having Said That, can anyone suggest another novel way to terminate programs at a user's discretion (without using threads :p)?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号