diff options
author | dobosevych <dobosevych@users.noreply.github.com> | 2022-04-16 13:57:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 16:57:37 +0600 |
commit | 260823304f487e982ce6ecc660ad12cc7f55c987 (patch) | |
tree | 0e426435d8f35ad8179e29e52bbb2609840d96f9 /docs/userguide | |
parent | 7516daf7a774dd9671d16c475c6ac266de977a0a (diff) | |
download | kombu-260823304f487e982ce6ecc660ad12cc7f55c987.tar.gz |
json.py cleaning from outdated libs (#1533)
* json.py cleaning from outdated libs
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* 1. Removed cjson and simplejson from documentation, as those libraries aren't supported anymore
2. Removed _json_extra_kwargs from json.py
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to 'docs/userguide')
-rw-r--r-- | docs/userguide/serialization.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/userguide/serialization.rst b/docs/userguide/serialization.rst index e9cc94d3..f5cb8125 100644 --- a/docs/userguide/serialization.rst +++ b/docs/userguide/serialization.rst @@ -32,10 +32,9 @@ The accept argument can also include MIME-types. Each option has its advantages and disadvantages. -`json` -- JSON is supported in many programming languages, is now - a standard part of Python (since 2.6), and is fairly fast to - decode using the modern Python libraries such as `cjson` or - `simplejson`. +`json` -- JSON is supported in many programming languages, is + a standard part of Python, and is fairly fast to + decode. The primary disadvantage to `JSON` is that it limits you to the following data types: strings, Unicode, floats, boolean, |