I have pretty much the identical problem to this but with python. Printing large amounts of text will even crash my sublime text. Unfortunately the solution described is specific to Clojure. Any ideas?
Clarification: I encounter the slow down if the code prints stuff too fast without a delay. This code will do it:
for x in range(1000000):
print(x)