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 b46366e commit 94641f5Copy full SHA for 94641f5
stdlib/2and3/plistlib.pyi
@@ -9,7 +9,7 @@ from enum import Enum
9
import sys
10
11
mm = MutableMapping[str, Any]
12
-_D = TypeVar('_D', bound=mm)
+_D = TypeVar('_D', mm)
13
if sys.version_info >= (3,):
14
_Path = str
15
else:
stdlib/3/unittest/__init__.pyi
@@ -12,7 +12,7 @@ from contextlib import ContextManager
_T = TypeVar('_T')
-_FT = TypeVar('_FT', bound=Callable[[Any], Any])
+_FT = TypeVar('_FT', Callable[[Any], Any])
16
17
18
def skip(reason: str) -> Callable[[_FT], _FT]: ...
0 commit comments