We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302109e commit e004de4Copy full SHA for e004de4
2 files changed
stdlib/@tests/test_cases/check_functools.py
@@ -119,8 +119,6 @@ def sd_fun(arg: object) -> str:
119
def _(int_arg: int) -> str:
120
return ""
121
122
- assert_type(sd_fun, _SingleDispatchCallable[[object], str])
123
-
124
sd_fun.dispatch(42)
125
sd_fun.dispatch("")
126
sd_fun.dispatch(1, 2) # type: ignore
stubs/aiofiles/aiofiles/threadpool/__init__.pyi
@@ -99,7 +99,7 @@ def open(
99
) -> AiofilesContextManager[_UnknownAsyncBinaryIO]: ...
100
101
stdin: AsyncTextIndirectIOWrapper
102
-stdout: AsyncTextIndirectIOWrapper # type: ignore # ???
+stdout: AsyncTextIndirectIOWrapper
103
stderr: AsyncTextIndirectIOWrapper
104
stdin_bytes: AsyncIndirectBufferedIOBase
105
stdout_bytes: AsyncIndirectBufferedIOBase
0 commit comments