summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/pydevd_constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/pydevd_constants.py')
-rw-r--r--python/helpers/pydev/pydevd_constants.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/python/helpers/pydev/pydevd_constants.py b/python/helpers/pydev/pydevd_constants.py
index 74e897461458..e878d3b48ead 100644
--- a/python/helpers/pydev/pydevd_constants.py
+++ b/python/helpers/pydev/pydevd_constants.py
@@ -72,13 +72,10 @@ except AttributeError:
SUPPORT_GEVENT = os.getenv('GEVENT_SUPPORT', 'False') == 'True'
USE_LIB_COPY = SUPPORT_GEVENT and not IS_PY3K and sys.version_info[1] >= 6
+import _pydev_threading as threading
-if USE_LIB_COPY:
- import _pydev_threading as threading
-else:
- import threading
-
-_nextThreadIdLock = threading.Lock()
+from _pydev_imps import _pydev_thread
+_nextThreadIdLock = _pydev_thread.allocate_lock()
#=======================================================================================================================
# Jython?