Make most ujson.dump() parameters keyword-only (#10044)

This commit is contained in:
Grigoriev Semyon
2023-04-13 16:36:02 +03:00
committed by GitHub
parent 83f0dbe14c
commit 6f35e8d9fa

View File

@@ -33,6 +33,7 @@ def dumps(
def dump(
obj: Any,
fp: IO[str],
*,
ensure_ascii: bool = ...,
double_precision: int = ...,
encode_html_chars: bool = ...,