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
eb731d08
Commit
eb731d08
authored
6 years ago
by
Andrey Lisin
Browse files
Options
Download
Email Patches
Plain Diff
PyDev fixes: fix issues found so far after rebase
parent
e31dbaa5
Branches unavailable
Tags unavailable
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
python/helpers/pydev/_pydevd_bundle/pydevd_comm.py
+1
-1
python/helpers/pydev/_pydevd_bundle/pydevd_comm.py
python/helpers/pydev/pydevd.py
+1
-1
python/helpers/pydev/pydevd.py
python/testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
+1
-1
.../testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
with
3 additions
and
3 deletions
+3
-3
python/helpers/pydev/_pydevd_bundle/pydevd_comm.py
+
1
-
1
View file @
eb731d08
...
...
@@ -728,7 +728,7 @@ class NetCommandFactory:
# Note: variables are all gotten 'on-demand'.
append
(
'<frame id="%s" name="%s" '
%
(
my_id
,
make_valid_xml_value
(
method_name
)))
append
(
'file="%s" line="%s">'
%
(
make_valid_xml_value
(
my_file
,
'/>_=
\t
'
),
lineno
))
append
(
'file="%s" line="%s">'
%
(
quote
(
make_valid_xml_value
(
my_file
)
,
'/>_=
\t
'
),
lineno
))
append
(
"</frame>"
)
curr_frame
=
curr_frame
.
f_back
except
:
...
...
This diff is collapsed.
Click to expand it.
python/helpers/pydev/pydevd.py
+
1
-
1
View file @
eb731d08
...
...
@@ -1256,7 +1256,7 @@ class PyDB(object):
self
.
patch_threads
()
if
enable_tracing_from_start
:
pydevd_tracing
.
SetTrace
(
self
.
trace_dispatch
,
self
.
frame_eval_func
,
self
.
dummy_trace_dispatch
)
pydevd_tracing
.
SetTrace
(
self
.
trace_dispatch
)
PyDBCommandThread
(
self
).
start
()
...
...
This diff is collapsed.
Click to expand it.
python/testSrc/com/jetbrains/env/python/PythonDebuggerTest.java
+
1
-
1
View file @
eb731d08
...
...
@@ -100,7 +100,7 @@ public class PythonDebuggerTest extends PyEnvTestCase {
@Test
@Staging
public
void
testFrameEvalAndTracing
()
{
unit
tests
(
"tests_python/test_frame_eval_and_tracing.py"
,
Sets
.
newHashSet
(
"pyt
hon3.6"
),
true
);
py
tests
(
"tests_python/test_frame_eval_and_tracing.py"
,
Sets
.
newHashSet
(
"pyt
est"
,
"-iron"
)
);
}
private
void
pytests
(
final
String
script
,
@Nullable
Set
<
String
>
tags
)
{
...
...
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