Files
openide/python/helpers/pydev/_pydevd_bundle/pydevd_cython.pxd
Andrey Lisin 5029797a6c IDEA-CR-57291: PY-37771 Port new IDEA debugger smart step into UI/UX to PyCharm
(cherry picked from commit 4fefae6a1d9fbc6df174d53222ceba9208691b65)

GitOrigin-RevId: d6e65ace1378765be246fe09a86d2bff133855df
2020-02-21 17:31:28 +00:00

27 lines
1004 B
Cython

cdef class PyDBAdditionalThreadInfo:
cdef public int pydev_state;
cdef public object pydev_step_stop; # Actually, it's a frame or None
cdef public int pydev_step_cmd;
cdef public bint pydev_notify_kill;
cdef public bint pydev_django_resolve_frame;
cdef public object pydev_call_from_jinja2;
cdef public object pydev_call_inside_jinja2;
cdef public bint is_tracing;
cdef public tuple conditional_breakpoint_exception;
cdef public str pydev_message;
cdef public int suspend_type;
cdef public int pydev_next_line;
cdef public str pydev_func_name;
cdef public bint suspended_at_unhandled;
cdef public str trace_suspend_type;
cdef public PydevSmartStepContext pydev_smart_step_context;
cdef class PydevSmartStepContext:
cdef public object smart_step_stop; # Actually, it's a frame or None
cdef public int call_order;
cdef public str filename;
cdef public int line;
cdef public int start_line;
cdef public int end_line;