mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-15 08:17:07 +08:00
Fix stdlib stubtest for latest Python patch releases (#13464)
This commit is contained in:
@@ -64,7 +64,11 @@ if sys.version_info >= (3, 11):
|
||||
def __init__(self, value: _EnumMemberT) -> None: ...
|
||||
|
||||
class _EnumDict(dict[str, Any]):
|
||||
def __init__(self) -> None: ...
|
||||
if sys.version_info >= (3, 13):
|
||||
def __init__(self, cls_name: str | None = None) -> None: ...
|
||||
else:
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
def __setitem__(self, key: str, value: Any) -> None: ...
|
||||
if sys.version_info >= (3, 11):
|
||||
# See comment above `typing.MutableMapping.update`
|
||||
|
||||
Reference in New Issue
Block a user