summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/_pydev_threading.py
blob: 62b300b86cd0637739c6b5a14c6f67bbcf6a72f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from threading import enumerate, currentThread, Condition, Event, Timer, Thread
try:
    from threading import settrace
except:
    pass


try:
    from gevent import monkey
    saved = monkey.saved['threading']
    for key, val in saved.items():
        globals()[key] = val
except:
    pass