masroore / pyscripter

Automatically exported from code.google.com/p/pyscripter
0 stars 0 forks source link

Problems Debugging with Remote Python Engine on WinXP #499

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Using python 2.6, Window XP and PyScripter 2.4.1

Consider the following sample program:

if __name__ == '__main__':
    for t in range(10000):
        print '*'*80
        a='*'*1000000

If I start debugging with the remote python engine, then the program will 
freeze and no longer print output after a few dozen lines. The only way to 
escape is to reinitialize the engine. I don't have this problem with the 
internal engine. Seems that any program with lots of processing and 
intermittent output will cause this problem. 

Original issue reported on code.google.com by damienlm...@gmail.com on 24 Mar 2011 at 4:29

GoogleCodeExporter commented 9 years ago
I cannot reproduce the problem with python 2.7.  Reinitializing the engine is 
indeed the right way to escape from a tight loop.

Original comment by pyscripter on 28 May 2011 at 5:55