JVM Languages
jpydbg.txt
Associated article: The Jpydbg Debugger
Tags: Web Development JVM Languages
Published source code accompanying the article by Jean-Yves Mengant in which he presents Jpydbg, the debugger Jean-a Python plug-in for the JEdit framework. Also see JPYDBG.ZIP.
The Jpydbg Debugger
by Jean-Yves Mengant
Example 1:
def trace_dispatch(self, frame, event, arg):
if self.quitting:
return # None
if event == 'line':
return self.dispatch_line(frame)
if event == 'call':
return self.dispatch_call(frame, arg)
if event == 'return':
return ...


