File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ win32com.client.tlbrowse
1111win32com.client.CLSIDToClass
1212win32com.client.connect
1313# "dynamic.CDipatch" is necessary for mypy to not throw AssertionError
14- win32com.client.dynamic.*
1514win32com.client.gencache.*
1615win32com.client.genpy
1716win32com.client.makepy
Original file line number Diff line number Diff line change 11from _typeshed import Incomplete
22from abc import ABC , abstractmethod
3- from typing import Final
3+ from typing import Any , Final
44
55import _win32typing
66
7+ __author__ : Final [str ]
78S_OK : Final = 0
89IDispatchType : Incomplete
910IUnknownType : Incomplete
@@ -32,8 +33,8 @@ class DynamicPolicy(BasicWrapPolicy):
3233
3334DefaultPolicy = DesignatedWrapPolicy
3435
35- def resolve_func (spec : str ): ...
36- def call_func (spec : str , * args ): ...
36+ def resolve_func (spec : str ) -> Any : ...
37+ def call_func (spec : str , * args ) -> Any : ...
3738
3839DISPATCH_METHOD : int
3940DISPATCH_PROPERTYGET : int
Original file line number Diff line number Diff line change 11from _typeshed import Incomplete
2+ from collections .abc import Iterable
23from typing import Literal
34
45import _win32typing
@@ -17,7 +18,7 @@ class ListEnumerator:
1718 def Clone (self ): ...
1819
1920class ListEnumeratorGateway (ListEnumerator ):
20- def Next (self , count : int ) -> map [Incomplete ]: ...
21+ def Next (self , count : int ) -> Iterable [Incomplete ]: ...
2122
2223def NewEnum (
2324 seq ,
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ class Arg:
2323 inOut : Incomplete
2424 default : Incomplete
2525 clsid : Incomplete
26- arg_info : Incomplete
2726 size : Incomplete
2827 offset : int
2928 def __init__ (self , arg_info , name = None ) -> None : ...
You can’t perform that action at this time.
0 commit comments