mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
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:
4
third_party/3/orjson.pyi
vendored
4
third_party/3/orjson.pyi
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user