Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
9a70b791
Commit
9a70b791
authored
6 years ago
by
Alexander Koshevoy
Browse files
Options
Download
Email Patches
Plain Diff
PY-32719 Fix "ModuleNotFoundError: No module named '_shaded_thriftpy'" error on debugging
parent
14449194
Branches unavailable
Tags unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/helpers/pydev/_pydev_bundle/pydev_stdin.py
+2
-2
python/helpers/pydev/_pydev_bundle/pydev_stdin.py
python/testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
+0
-1
.../testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
with
2 additions
and
3 deletions
+2
-3
python/helpers/pydev/_pydev_bundle/pydev_stdin.py
+
2
-
2
View file @
9a70b791
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
()
...
...
This diff is collapsed.
Click to expand it.
python/testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
+
0
-
1
View file @
9a70b791
...
...
@@ -85,7 +85,6 @@ public class PythonDebuggerTest extends PyEnvTestCase {
}
@Test
@Staging
public
void
testPydevMonkey
()
{
unittests
(
"tests_pydevd_python/test_pydev_monkey.py"
,
null
);
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help