mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-25 12:26:44 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -21,7 +21,7 @@ def lock_held() -> bool: ...
|
||||
def release_lock() -> None: ...
|
||||
|
||||
if sys.version_info >= (3, 11):
|
||||
def find_frozen(__name: str, *, withdata: bool = ...) -> tuple[memoryview | None, bool, str | None] | None: ...
|
||||
def find_frozen(__name: str, *, withdata: bool = False) -> tuple[memoryview | None, bool, str | None] | None: ...
|
||||
def get_frozen_object(__name: str, __data: ReadableBuffer | None = ...) -> types.CodeType: ...
|
||||
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user