mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
16 lines
226 B
Python
16 lines
226 B
Python
class Debuger:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def set_trace(self):
|
|
pass
|
|
|
|
def set_trace():
|
|
pass
|
|
|
|
def set_break(module: str, pc_break: int):
|
|
pass
|
|
|
|
def reset_break(module: str, pc_break: int):
|
|
pass
|