Commit 9a70b791 authored by Alexander Koshevoy's avatar Alexander Koshevoy
Browse files

PY-32719 Fix "ModuleNotFoundError: No module named '_shaded_thriftpy'" error on debugging

parent 14449194
Branches unavailable Tags unavailable
No related merge requests found
Showing with 2 additions and 3 deletions
+2 -3
import sys
from pydev_console.protocol import KeyboardInterruptException
# =======================================================================================================================
# BaseStdIn
......@@ -59,6 +57,8 @@ class StdIn(BaseStdIn):
self.rpc_client = rpc_client
def readline(self, *args, **kwargs):
from pydev_console.protocol import KeyboardInterruptException
# Ok, callback into the client to get the new input
try:
requested_input = self.rpc_client.requestInput()
......
......@@ -85,7 +85,6 @@ public class PythonDebuggerTest extends PyEnvTestCase {
}
@Test
@Staging
public void testPydevMonkey() {
unittests("tests_pydevd_python/test_pydev_monkey.py", null);
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment