mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Bump pywin32 to 308.* (#12799)
This commit is contained in:
@@ -1 +0,0 @@
|
||||
from win32comext.mapi._exchdapi import *
|
||||
@@ -1,9 +1,11 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing_extensions import TypeAlias, deprecated
|
||||
from logging import Logger
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
from win32com.server.policy import BasicWrapPolicy
|
||||
|
||||
class DispatcherBase:
|
||||
policy: Incomplete
|
||||
logger: Incomplete
|
||||
policy: BasicWrapPolicy
|
||||
logger: Logger
|
||||
def __init__(self, policyClass, object) -> None: ...
|
||||
|
||||
class DispatcherTrace(DispatcherBase): ...
|
||||
@@ -13,13 +15,4 @@ class DispatcherWin32trace(DispatcherTrace):
|
||||
|
||||
class DispatcherOutputDebugString(DispatcherTrace): ...
|
||||
|
||||
@deprecated(
|
||||
"""\
|
||||
The DispatcherWin32dbg dispatcher is deprecated!
|
||||
Please let the developer know if this is a problem.
|
||||
Uncomment the relevant lines in dispatcher.py to re-enable"""
|
||||
)
|
||||
class DispatcherWin32dbg(DispatcherBase):
|
||||
def __init__(self, policyClass, ob) -> None: ...
|
||||
|
||||
DefaultDebugDispatcher: TypeAlias = DispatcherTrace
|
||||
|
||||
Reference in New Issue
Block a user