I am writing python code with Sublime Text 3, and I am installing SublimeREPL for its convenience to launch PDB and console in a sublime way. But recently, I found a problem when running the following code:
for i in xrange(100000):
print i
- when you run the above code,
Tools=>SublimeREPL=>Python=>Python-Run current filenothing is output, and soon Sublime is not responding. And then, clicking on the editor, the sublime crashed. - I thought maybe the reason is that there is too much data, but I tried using the Sublime python built-in command
Tools=>build system=>Python, it just displays from 0 to 99999, nothing bad happened - My os is WIN10 and Sublime is Build 3114, python 2.7.3, and I installed another package like sublimerge, sidebar, anaconda, sublimeClang, Terminal, ConverToUTF8, PythonPEP8AutoFormat.
seems to be a SublimeREPL problem, but I think it can be solved for the python built-in command in order, can anyone help me?
source
share