Sublime Text 3 Python REPL Slow Printing

I have a pretty much identical problem with this , but with python. Printing a lot of text will even crash my sublime text. Unfortunately, the described solution is specific to Clojure. Any ideas?

Clarification: I encounter a slowdown if the code prints the material too quickly without delay. This code will do this:

for x in range(1000000): print(x) 
+6
source share

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


All Articles