summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2005-05-05 23:29:54 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2005-05-05 23:29:54 (GMT)
commit20345fb8aada23ff3b02f4bd54ff9a96b994dd5b (patch)
tree3d2470429fac7ba59bd24f12b91822b0236eb678 /Lib/idlelib
parentabb103b17a5f5b633fc2abed506c20de857d2dff (diff)
downloadcpython-20345fb8aada23ff3b02f4bd54ff9a96b994dd5b.zip
cpython-20345fb8aada23ff3b02f4bd54ff9a96b994dd5b.tar.gz
cpython-20345fb8aada23ff3b02f4bd54ff9a96b994dd5b.tar.bz2
Use Queue's blocking feature instead of sleeping in the main
loop. Patch # 1190163 Michiel de Hoon
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/NEWS.txt3
-rw-r--r--Lib/idlelib/run.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 0670255..afec8e4 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -3,6 +3,9 @@ What's New in IDLE 1.2a0?
*Release date: XX-XXX-2005*
+- run.py: use Queue's blocking feature instead of sleeping in the main
+ loop. Patch # 1190163 Michiel de Hoon
+
- Add config-main option to make the 'history' feature non-cyclic.
Default remains cyclic. Python Patch 914546 Noam Raphael.
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py
index 62f4cce..8adb6f1 100644
--- a/Lib/idlelib/run.py
+++ b/Lib/idlelib/run.py
@@ -82,9 +82,8 @@ def main(del_exitfunc=False):
# exiting but got an extra KBI? Try again!
continue
try:
- seq, request = rpc.request_queue.get(0)
+ seq, request = rpc.request_queue.get(block=True, timeout=0.05)
except Queue.Empty:
- time.sleep(0.05)
continue
method, args, kwargs = request
ret = method(*args, **kwargs)