File: contexts.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (19 lines) | stat: -rw-r--r-- 673 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from _typeshed import Incomplete

from win32comext.axdebug import adb as adb, gateways
from win32comext.axdebug.util import trace as trace

class DebugCodeContext(gateways.DebugCodeContext, gateways.DebugDocumentContext):
    debugSite: Incomplete
    offset: Incomplete
    length: Incomplete
    breakPointState: int
    lineno: Incomplete
    codeContainer: Incomplete
    def __init__(self, lineNo, charPos, len, codeContainer, debugSite) -> None: ...
    def GetDocumentContext(self): ...
    def SetBreakPoint(self, bps) -> None: ...
    def GetDocument(self): ...
    def EnumCodeContexts(self): ...

class EnumDebugCodeContexts(gateways.EnumDebugCodeContexts): ...