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
|
from _typeshed import Incomplete
from win32com.server.exception import COMException as COMException
from win32comext.axdebug import gateways
from win32comext.axdebug.util import RaiseNotImpl as RaiseNotImpl, trace as trace
class EnumDebugStackFrames(gateways.EnumDebugStackFrames):
def __init__(self, debugger) -> None: ...
def Next(self, count): ...
class DebugStackFrame(gateways.DebugStackFrame):
frame: Incomplete
lineno: Incomplete
codeContainer: Incomplete
expressionContext: Incomplete
def __init__(self, frame, lineno, codeContainer) -> None: ...
def GetThread(self) -> None: ...
def GetCodeContext(self): ...
def GetDescriptionString(self, fLong): ...
def GetLanguageString(self, fLong): ...
def GetDebugProperty(self): ...
class DebugStackFrameSniffer:
debugger: Incomplete
def __init__(self, debugger) -> None: ...
def EnumStackFrames(self): ...
class StackFrameDebugProperty:
frame: Incomplete
def __init__(self, frame) -> None: ...
def GetPropertyInfo(self, dwFieldSpec, nRadix) -> None: ...
def GetExtendedInfo(self) -> None: ...
def SetValueAsString(self, value, radix) -> None: ...
def EnumMembers(self, dwFieldSpec, nRadix, iid): ...
def GetParent(self) -> None: ...
|