gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)

This commit is contained in:
Serhiy Storchaka 2022-09-24 14:38:53 +03:00 committed by GitHub
parent f00383ec9b
commit db39050396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 63 additions and 63 deletions

View file

@ -1,4 +1,4 @@
r"""JSON (JavaScript Object Notation) <http://json.org> is a subset of
r"""JSON (JavaScript Object Notation) <https://json.org> is a subset of
JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
interchange format.

View file

@ -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:

View file

@ -72,7 +72,7 @@ encode_basestring_ascii = (
c_encode_basestring_ascii or py_encode_basestring_ascii)
class JSONEncoder(object):
"""Extensible JSON <http://json.org> encoder for Python data structures.
"""Extensible JSON <https://json.org> encoder for Python data structures.
Supports the following objects and types by default: