diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-09-24 14:38:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 14:38:53 +0300 |
commit | db39050396a104c73d0da473a2f00a62f9dfdfaa (patch) | |
tree | 2dfe5638f680aa797f47bd73f40bada3c49e489e /Lib/json/decoder.py | |
parent | f00383ec9bb9452fd9d5f5003f123e68fc4a71d8 (diff) | |
download | cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.tar.gz cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.zip |
gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)
Diffstat (limited to 'Lib/json/decoder.py')
-rw-r--r-- | Lib/json/decoder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/json/decoder.py b/Lib/json/decoder.py index d7d824454e1..c5d9ae2d0d5 100644 --- a/Lib/json/decoder.py +++ b/Lib/json/decoder.py @@ -252,7 +252,7 @@ def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): class JSONDecoder(object): - """Simple JSON <http://json.org> decoder + """Simple JSON <https://json.org> decoder Performs the following translations in decoding by default: |