? dist/src/libpython2.5.dll ? dist/src/python.exe.stackdump ? dist/src/Lib/plat-cygwin ? dist/src/Lib/test/python2.5.exe.stackdump ? dist/src/Lib/test/test.uit ? dist/src/Mac/IDE scripts/Hold option to open a script ? dist/src/Mac/IDE scripts/Insert file name ? dist/src/Mac/IDE scripts/Insert folder name ? dist/src/Mac/IDE scripts/Search Python Documentation ? dist/src/Mac/IDE scripts/Hack/Remove .pyc files ? dist/src/Mac/IDE scripts/Hack/Toolbox Assistant Index: dist/src/Lib/idlelib/run.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/run.py,v retrieving revision 1.31 diff -c -r1.31 run.py *** dist/src/Lib/idlelib/run.py 21 Dec 2004 22:10:32 -0000 1.31 --- dist/src/Lib/idlelib/run.py 26 Apr 2005 09:13:06 -0000 *************** *** 82,90 **** # exiting but got an extra KBI? Try again! continue try: ! seq, request = rpc.request_queue.get(0) except Queue.Empty: - time.sleep(0.05) continue method, args, kwargs = request ret = method(*args, **kwargs) --- 82,89 ---- # exiting but got an extra KBI? Try again! continue try: ! seq, request = rpc.request_queue.get(block=True, timeout=0.05) except Queue.Empty: continue method, args, kwargs = request ret = method(*args, **kwargs)