You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From python -m mypy.stubtest --custom-typeshed-dir . wsgiref:
error: wsgiref.types._Readable.__init__ is inconsistent, stub does not have *args argument "args"
Stub: at line 87
def (self: builtins.object)
Runtime: at line 1912 in file /Users/jelle/py/cpython/Lib/typing.py
def (self, *args, **kwargs)
The stub and implementation are exactly the same.
Stubtest picks up the __init__ method the runtime injects for Protocols, but it's not useful.
The text was updated successfully, but these errors were encountered:
From
python -m mypy.stubtest --custom-typeshed-dir . wsgiref
:The stub and implementation are exactly the same.
Stubtest picks up the
__init__
method the runtime injects for Protocols, but it's not useful.The text was updated successfully, but these errors were encountered: