From f1ea183e256b2e78b0618b52cea1ebe7f1ecd5ea Mon Sep 17 00:00:00 2001 From: Fabio Zadrozny Date: Thu, 14 Oct 2021 08:39:32 -0300 Subject: [PATCH] Sync pydevd jython fix. --- .../_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugpy/_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py b/src/debugpy/_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py index eb95eccf..9b01a651 100644 --- a/src/debugpy/_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py +++ b/src/debugpy/_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py @@ -94,7 +94,7 @@ with VerifyShadowedImport('code') as verify_shadowed: if IS_PY2: with VerifyShadowedImport('thread') as verify_shadowed: - import thread; verify_shadowed.check(thread, ['start_new_thread', 'start_new', 'allocate_lock']) + import thread; verify_shadowed.check(thread, ['start_new_thread', 'allocate_lock']) with VerifyShadowedImport('Queue') as verify_shadowed: import Queue as _queue; verify_shadowed.check(_queue, ['Queue', 'LifoQueue', 'Empty', 'Full', 'deque'])