Commit eb731d08 authored by Andrey Lisin's avatar Andrey Lisin
Browse files

PyDev fixes: fix issues found so far after rebase

parent e31dbaa5
Branches unavailable Tags unavailable
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -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:
......
......@@ -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()
......
......@@ -100,7 +100,7 @@ public class PythonDebuggerTest extends PyEnvTestCase {
@Test
@Staging
public void testFrameEvalAndTracing() {
unittests("tests_python/test_frame_eval_and_tracing.py", Sets.newHashSet("python3.6"), true);
pytests("tests_python/test_frame_eval_and_tracing.py", Sets.newHashSet("pytest", "-iron"));
}
private void pytests(final String script, @Nullable Set<String> tags) {
......
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