mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
stdlib: Run stubdefaulter on Linux for 3.9 (#9663)
This commit is contained in:
@@ -19,18 +19,18 @@ class Extension:
|
||||
self,
|
||||
name: str,
|
||||
sources: list[str],
|
||||
include_dirs: list[str] | None = ...,
|
||||
define_macros: list[tuple[str, str | None]] | None = ...,
|
||||
undef_macros: list[str] | None = ...,
|
||||
library_dirs: list[str] | None = ...,
|
||||
libraries: list[str] | None = ...,
|
||||
runtime_library_dirs: list[str] | None = ...,
|
||||
extra_objects: list[str] | None = ...,
|
||||
extra_compile_args: list[str] | None = ...,
|
||||
extra_link_args: list[str] | None = ...,
|
||||
export_symbols: list[str] | None = ...,
|
||||
swig_opts: list[str] | None = ...,
|
||||
depends: list[str] | None = ...,
|
||||
language: str | None = ...,
|
||||
optional: bool | None = ...,
|
||||
include_dirs: list[str] | None = None,
|
||||
define_macros: list[tuple[str, str | None]] | None = None,
|
||||
undef_macros: list[str] | None = None,
|
||||
library_dirs: list[str] | None = None,
|
||||
libraries: list[str] | None = None,
|
||||
runtime_library_dirs: list[str] | None = None,
|
||||
extra_objects: list[str] | None = None,
|
||||
extra_compile_args: list[str] | None = None,
|
||||
extra_link_args: list[str] | None = None,
|
||||
export_symbols: list[str] | None = None,
|
||||
swig_opts: list[str] | None = None,
|
||||
depends: list[str] | None = None,
|
||||
language: str | None = None,
|
||||
optional: bool | None = None,
|
||||
) -> None: ...
|
||||
|
||||
@@ -25,15 +25,18 @@ def byte_compile(
|
||||
) -> None: ...
|
||||
def rfc822_escape(header: str) -> str: ...
|
||||
def run_2to3(
|
||||
files: Iterable[str], fixer_names: Iterable[str] | None = ..., options: Mapping[str, Any] | None = ..., explicit: Unused = ...
|
||||
files: Iterable[str],
|
||||
fixer_names: Iterable[str] | None = None,
|
||||
options: Mapping[str, Any] | None = None,
|
||||
explicit: Unused = None,
|
||||
) -> None: ...
|
||||
def copydir_run_2to3(
|
||||
src: StrPath,
|
||||
dest: StrPath,
|
||||
template: str | None = ...,
|
||||
fixer_names: Iterable[str] | None = ...,
|
||||
options: Mapping[str, Any] | None = ...,
|
||||
explicit: Container[str] | None = ...,
|
||||
template: str | None = None,
|
||||
fixer_names: Iterable[str] | None = None,
|
||||
options: Mapping[str, Any] | None = None,
|
||||
explicit: Container[str] | None = None,
|
||||
) -> list[str]: ...
|
||||
|
||||
class Mixin2to3:
|
||||
|
||||
Reference in New Issue
Block a user