mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-14 12:01:06 +08:00
Bump pywin32 to 311.* (#14437)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from _typeshed import Incomplete
|
||||
from _typeshed import Incomplete, Unused
|
||||
from collections.abc import Iterator
|
||||
from typing import Final
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
@@ -62,12 +63,12 @@ class CoClassBaseClass:
|
||||
def __init__(self, oobj: Incomplete | None = ...) -> None: ...
|
||||
def __getattr__(self, attr: str): ...
|
||||
def __setattr__(self, attr: str, value) -> None: ...
|
||||
def __maybe__call__(self, *args, **kwargs): ...
|
||||
def __maybe__str__(self, *args): ...
|
||||
def __maybe__int__(self, *args): ...
|
||||
def __maybe__iter__(self): ...
|
||||
def __maybe__len__(self): ...
|
||||
def __maybe__bool__(self): ...
|
||||
def __call__(self, *args, **kwargs): ...
|
||||
def __str__(self, *args: Unused) -> str: ... # noqa: Y029
|
||||
def __int__(self, *args: Unused) -> int: ...
|
||||
def __iter__(self) -> Iterator[Incomplete]: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __bool__(self) -> bool: ...
|
||||
|
||||
class VARIANT:
|
||||
varianttype: Incomplete
|
||||
|
||||
Reference in New Issue
Block a user