mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
Fix stub for ujson (#1374)
This commit is contained in:
committed by
Jelle Zijlstra
parent
5db571a8f3
commit
2b79108ddc
6
third_party/2and3/ujson.pyi
vendored
6
third_party/2and3/ujson.pyi
vendored
@@ -7,7 +7,7 @@ __version__ = ... # type: str
|
||||
def encode(
|
||||
obj: Any,
|
||||
ensure_ascii: bool = ...,
|
||||
double_precision: bool = ...,
|
||||
double_precision: int = ...,
|
||||
encode_html_chars: bool = ...,
|
||||
escape_forward_slashes: bool = ...,
|
||||
sort_keys: bool = ...,
|
||||
@@ -17,7 +17,7 @@ def encode(
|
||||
def dumps(
|
||||
obj: Any,
|
||||
ensure_ascii: bool = ...,
|
||||
double_precision: bool = ...,
|
||||
double_precision: int = ...,
|
||||
encode_html_chars: bool = ...,
|
||||
escape_forward_slashes: bool = ...,
|
||||
sort_keys: bool = ...,
|
||||
@@ -28,7 +28,7 @@ def dump(
|
||||
obj: Any,
|
||||
fp: IO[str],
|
||||
ensure_ascii: bool = ...,
|
||||
double_precision: bool = ...,
|
||||
double_precision: int = ...,
|
||||
encode_html_chars: bool = ...,
|
||||
escape_forward_slashes: bool = ...,
|
||||
sort_keys: bool = ...,
|
||||
|
||||
Reference in New Issue
Block a user