mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-24 04:41:30 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -11,10 +11,10 @@ class ZipAppError(ValueError): ...
|
||||
|
||||
def create_archive(
|
||||
source: _Path,
|
||||
target: _Path | None = ...,
|
||||
interpreter: str | None = ...,
|
||||
main: str | None = ...,
|
||||
filter: Callable[[Path], bool] | None = ...,
|
||||
compressed: bool = ...,
|
||||
target: _Path | None = None,
|
||||
interpreter: str | None = None,
|
||||
main: str | None = None,
|
||||
filter: Callable[[Path], bool] | None = None,
|
||||
compressed: bool = False,
|
||||
) -> None: ...
|
||||
def get_interpreter(archive: _Path) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user