bdb: update for py311 (#7927)

This commit is contained in:
Shantanu
2022-05-23 00:20:48 -07:00
committed by GitHub
parent 9660ee97ee
commit 8968eb4fc9
2 changed files with 5 additions and 1 deletions

View File

@@ -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: ...

View File

@@ -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__