use_builtin_types is optional for plistlib.load (#1738)

This commit is contained in:
FichteFoll
2017-11-12 01:54:11 +01:00
committed by Jelle Zijlstra
parent 97be335160
commit a44de46a00

View File

@@ -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], *,