~pythonregexp2.7/python/issue2636-06

« back to all changes in this revision

Viewing changes to Lib/idlelib/run.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-05-24 16:10:37 UTC
  • mfrom: (39025.1.6 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080524161037-oa3fo9iyz4fj02do
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
import traceback
6
6
import thread
7
7
import threading
8
 
import Queue
 
8
import queue
9
9
 
10
10
import CallTips
11
11
import AutoComplete
85
85
                    continue
86
86
            try:
87
87
                seq, request = rpc.request_queue.get(block=True, timeout=0.05)
88
 
            except Queue.Empty:
 
88
            except queue.Empty:
89
89
                continue
90
90
            method, args, kwargs = request
91
91
            ret = method(*args, **kwargs)