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/encoder.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/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 864f46d9dbb..45f54774188 100644 --- a/Lib/json/encoder.py +++ b/Lib/json/encoder.py @@ -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: |