How to stop input in SublimeREPL

I run the following code in SublimeREPL:

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

How to stop input when it is running? Ctrl + C , Ctlr + D or Ctrl + Z do not seem to work as they do in the terminal.

+5
source share
1 answer

You need to do ctrl + break or ctrl + space to break infinite recursion and interrupt the program

0
source

Source: https://habr.com/ru/post/1211164/


All Articles