Changed code to support older Python versions
This commit is contained in:
parent
eb92d2d36f
commit
582458cdd0
5027 changed files with 794942 additions and 4 deletions
27
venv/lib/python3.11/site-packages/orjson/__init__.py
Normal file
27
venv/lib/python3.11/site-packages/orjson/__init__.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from .orjson import *
|
||||
from .orjson import __version__
|
||||
|
||||
__all__ = (
|
||||
"__version__",
|
||||
"dumps",
|
||||
"Fragment",
|
||||
"JSONDecodeError",
|
||||
"JSONEncodeError",
|
||||
"loads",
|
||||
"OPT_APPEND_NEWLINE",
|
||||
"OPT_INDENT_2",
|
||||
"OPT_NAIVE_UTC",
|
||||
"OPT_NON_STR_KEYS",
|
||||
"OPT_OMIT_MICROSECONDS",
|
||||
"OPT_PASSTHROUGH_DATACLASS",
|
||||
"OPT_PASSTHROUGH_DATETIME",
|
||||
"OPT_PASSTHROUGH_SUBCLASS",
|
||||
"OPT_SERIALIZE_DATACLASS",
|
||||
"OPT_SERIALIZE_NUMPY",
|
||||
"OPT_SERIALIZE_UUID",
|
||||
"OPT_SORT_KEYS",
|
||||
"OPT_STRICT_INTEGER",
|
||||
"OPT_UTC_Z",
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue