Make PyPy stop at breakpoints again.

Fri, 21 Oct 2016 23:14:16 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Fri, 21 Oct 2016 23:14:16 +0200
changeset 5263
50a03ff54b15
parent 5262
235d6a030128
child 5264
8bc23ecb4ea3

Make PyPy stop at breakpoints again.

DebugClients/Python/DebugBase.py file | annotate | diff | comparison | revisions
--- a/DebugClients/Python/DebugBase.py	Fri Oct 21 20:01:56 2016 +0200
+++ b/DebugClients/Python/DebugBase.py	Fri Oct 21 23:14:16 2016 +0200
@@ -304,7 +304,7 @@
         if event == 'line':
             if self.stop_here(frame) or self.break_here(frame):
                 self.user_line(frame)
-            return
+            return self.trace_dispatch
         
         if event == 'call':
             if self.botframe is None and frame.f_lineno > 1:

eric ide

mercurial