mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Stdlib: add defaults for several functions that delegate kwargs to other functions at runtime (#9791)
This commit is contained in:
@@ -90,7 +90,7 @@ class Distribution:
|
||||
have_run: Incomplete
|
||||
want_user_cfg: bool
|
||||
def dump_option_dicts(
|
||||
self, header: Incomplete | None = ..., commands: Incomplete | None = ..., indent: str = ...
|
||||
self, header: Incomplete | None = None, commands: Incomplete | None = None, indent: str = ""
|
||||
) -> None: ...
|
||||
def find_config_files(self): ...
|
||||
commands: Incomplete
|
||||
@@ -102,8 +102,8 @@ class Distribution:
|
||||
def get_command_list(self): ...
|
||||
def get_command_packages(self): ...
|
||||
def get_command_class(self, command): ...
|
||||
def reinitialize_command(self, command, reinit_subcommands: int = ...): ...
|
||||
def announce(self, msg, level=...) -> None: ...
|
||||
def reinitialize_command(self, command, reinit_subcommands: int = 0): ...
|
||||
def announce(self, msg, level=2) -> None: ...
|
||||
def run_commands(self) -> None: ...
|
||||
def run_command(self, command) -> None: ...
|
||||
def has_pure_modules(self): ...
|
||||
|
||||
Reference in New Issue
Block a user