mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
use_builtin_types is optional for plistlib.load (#1738)
This commit is contained in:
committed by
Jelle Zijlstra
parent
97be335160
commit
a44de46a00
@@ -24,7 +24,7 @@ else:
|
||||
|
||||
if sys.version_info >= (3, 4):
|
||||
def load(fp: IO[bytes], *, fmt: Optional[PlistFormat] = ...,
|
||||
use_builtin_types: bool, dict_type: Type[_D] = ...) -> _D: ...
|
||||
use_builtin_types: bool = ..., dict_type: Type[_D] = ...) -> _D: ...
|
||||
def loads(data: bytes, *, fmt: Optional[PlistFormat] = ...,
|
||||
use_builtin_types: bool = ..., dict_type: Type[_D] = ...) -> _D: ...
|
||||
def dump(value: Mapping[str, Any], fp: IO[bytes], *,
|
||||
|
||||
Reference in New Issue
Block a user