diff options
author | James Gerity <snoopjedi@gmail.com> | 2021-12-07 04:58:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 11:58:40 +0200 |
commit | 8db06528cacc94e67eb1fb2e4c2acc061a515671 (patch) | |
tree | b436528ef22442e8711060c3de3a2901de81b231 /Lib/json/encoder.py | |
parent | ddbab69b6d44085564a9b5022b96b002a52b2f2b (diff) | |
download | cpython-8db06528cacc94e67eb1fb2e4c2acc061a515671.tar.gz cpython-8db06528cacc94e67eb1fb2e4c2acc061a515671.zip |
bpo-46001: Change OverflowError to RecursionError in JSON library docstrings (GH-29943)
Diffstat (limited to 'Lib/json/encoder.py')
-rw-r--r-- | Lib/json/encoder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/json/encoder.py b/Lib/json/encoder.py index c8c78b9c237..21bff2c1a1f 100644 --- a/Lib/json/encoder.py +++ b/Lib/json/encoder.py @@ -116,7 +116,7 @@ class JSONEncoder(object): If check_circular is true, then lists, dicts, and custom encoded objects will be checked for circular references during encoding to - prevent an infinite recursion (which would cause an OverflowError). + prevent an infinite recursion (which would cause an RecursionError). Otherwise, no such check takes place. If allow_nan is true, then NaN, Infinity, and -Infinity will be |