Update orjson.pyi to support two new flags (#3975)

Updated orjson.pyi to support two new added flags `OPT_INDENT_2` and `OPT_NON_STR_KEYS`.
Renamed `__obj` to `obj` to allow using named parameter `obj` instead of positional, without getting errors.
This commit is contained in:
Gal Ben David
2020-05-13 04:06:06 +03:00
committed by GitHub
parent 637dba1beb
commit 1d2ec3cd3b

View File

@@ -3,7 +3,7 @@ from typing import Any, Callable, Optional, Union
__version__ = str
def dumps(
__obj: Any,
obj: Any,
default: Optional[Callable[[Any], Any]] = ...,
option: Optional[int] = ...,
) -> bytes: ...
@@ -12,7 +12,9 @@ def loads(__obj: Union[bytes, bytearray, str]) -> Any: ...
class JSONDecodeError(ValueError): ...
class JSONEncodeError(TypeError): ...
OPT_INDENT_2: int
OPT_NAIVE_UTC: int
OPT_NON_STR_KEYS: int
OPT_OMIT_MICROSECONDS: int
OPT_SERIALIZE_DATACLASS: int
OPT_SERIALIZE_NUMPY: int