5

I run the following code in SublimeREPL:

while(True):
    a = raw_input()
    print a

How do I stop input when this is running? Ctrl+C, Ctlr+D, or Ctrl+Z don't seem to work like they do in a terminal.

davidism
  • 121,510
  • 29
  • 395
  • 339
qmakar
  • 51
  • 3

1 Answers1

0

You have to do ctrl+break or ctrl+space to break the infinite recursion and abort the program

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140