diff options
| author | Hynek Schlawack <hs@ox.cx> | 2012-05-20 18:32:53 +0200 |
|---|---|---|
| committer | Hynek Schlawack <hs@ox.cx> | 2012-05-20 18:32:53 +0200 |
| commit | f54c0604c852c2bf0b4d522cea7d94f205a795e8 (patch) | |
| tree | a08992d7bb4ea78b8a7186868e318c6c8ca43bda | |
| parent | 69d8493899592c64c0297964d7addb91aaeb0f17 (diff) | |
| download | cpython-git-f54c0604c852c2bf0b4d522cea7d94f205a795e8.tar.gz | |
Fix `versionchanged` tags for json.load
`versionchanged` tags about 2.7 are useless in 3.x branches.
| -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 b20709f073..2bdc577fef 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`` |
