diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-05-20 16:34:11 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-05-20 16:34:11 (GMT) |
commit | 44f7cf0b2f48a4d2073382423e1b15f0d76f2551 (patch) | |
tree | 98575fe2812d75b026d5b07cd5a391b0f6ed1458 /Doc | |
parent | 07162d4142cb755a6a9af2999b995e7bd9cb75b2 (diff) | |
parent | f54c0604c852c2bf0b4d522cea7d94f205a795e8 (diff) | |
download | cpython-44f7cf0b2f48a4d2073382423e1b15f0d76f2551.zip cpython-44f7cf0b2f48a4d2073382423e1b15f0d76f2551.tar.gz cpython-44f7cf0b2f48a4d2073382423e1b15f0d76f2551.tar.bz2 |
Fix `versionchanged` tags for json.load
`versionchanged` tags about 2.7 are useless in 3.x branches.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index b20709f..2bdc577 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -213,7 +213,7 @@ Basic Usage This can be used to raise an exception if invalid JSON numbers are encountered. - .. versionchanged:: 2.7 + .. versionchanged:: 3.1 *parse_constant* doesn't get called on 'null', 'true', 'false' anymore. To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls`` |