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 4b36994 commit 970b6d5Copy full SHA for 970b6d5
stdlib/2and3/distutils/extension.pyi
@@ -6,8 +6,8 @@ import sys
6
class Extension:
7
if sys.version_info >= (3,):
8
def __init__(self,
9
- *, name: str = ...,
10
- sources: List[str] = ...,
+ name: str,
+ sources: List[str],
11
include_dirs: List[str] = ...,
12
define_macros: List[Tuple[str, Optional[str]]] = ...,
13
undef_macros: List[str] = ...,
@@ -23,8 +23,8 @@ class Extension:
23
optional: bool = ...) -> None: ...
24
else:
25
26
27
28
29
30
0 commit comments