mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-18 06:55:58 +08:00
Fix stub for ujson (#1374)
This commit is contained in:
committed by
Jelle Zijlstra
parent
5db571a8f3
commit
2b79108ddc
Vendored
+3
-3
@@ -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