File: pydevd_cython.pxd

package info (click to toggle)
pydevd 3.3.0%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,892 kB
  • sloc: python: 77,508; cpp: 1,869; sh: 368; makefile: 50; ansic: 4
file content (42 lines) | stat: -rw-r--r-- 1,691 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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_original_step_cmd
    cdef public int pydev_step_cmd
    cdef public bint pydev_notify_kill
    cdef public object pydev_smart_step_stop # Actually, it's a frame or None
    cdef public bint pydev_django_resolve_frame
    cdef public object pydev_call_from_jinja2
    cdef public object pydev_call_inside_jinja2
    cdef public int 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 object top_level_thread_tracer_no_back_frames
    cdef public object top_level_thread_tracer_unhandled
    cdef public object thread_tracer
    cdef public object step_in_initial_location
    cdef public int pydev_smart_parent_offset
    cdef public int pydev_smart_child_offset
    cdef public tuple pydev_smart_step_into_variants
    cdef public dict target_id_to_smart_step_into_variant
    cdef public bint pydev_use_scoped_step_frame
    cdef public object weak_thread
    cdef public bint is_in_wait_loop
    
    cpdef get_topmost_frame(self, thread)
    cpdef update_stepping_info(self)
    
    # Private APIs
    cpdef object _get_related_thread(self)
    cpdef bint _is_stepping(self)

cpdef set_additional_thread_info(thread)

cpdef add_additional_info(PyDBAdditionalThreadInfo info)
cpdef remove_additional_info(PyDBAdditionalThreadInfo info)
cpdef bint any_thread_stepping()