mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 20:01:29 +08:00
bdb: update for py311 (#7927)
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import sys
|
||||
from _typeshed import ExcInfo
|
||||
from collections.abc import Callable, Iterable, Mapping
|
||||
from types import CodeType, FrameType, TracebackType
|
||||
@@ -86,6 +87,10 @@ class Breakpoint:
|
||||
def __init__(
|
||||
self, file: str, line: int, temporary: bool = ..., cond: str | None = ..., funcname: str | None = ...
|
||||
) -> None: ...
|
||||
if sys.version_info >= (3, 11):
|
||||
@staticmethod
|
||||
def clearBreakpoints() -> None: ...
|
||||
|
||||
def deleteMe(self) -> None: ...
|
||||
def enable(self) -> None: ...
|
||||
def disable(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user