mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +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: ...
|
||||
|
||||
@@ -30,7 +30,6 @@ asyncio.sslproto._SSLProtocolTransport.get_read_buffer_limits
|
||||
asyncio.sslproto._SSLProtocolTransport.get_read_buffer_size
|
||||
asyncio.sslproto._SSLProtocolTransport.set_read_buffer_limits
|
||||
asyncio.sslproto.add_flowcontrol_defaults
|
||||
bdb.Breakpoint.clearBreakpoints
|
||||
builtins.dict.get
|
||||
configparser.LegacyInterpolation.__init__
|
||||
contextvars.Context.__init__
|
||||
|
||||
Reference in New Issue
Block a user