Sync pydevd jython fix.

This commit is contained in:
Fabio Zadrozny 2021-10-14 08:39:32 -03:00 committed by Pavel Minaev
parent 3edb9f022f
commit f1ea183e25

View file

@ -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'])