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

@ -478,7 +478,7 @@ becomes complicated.
Rather than having users constantly writing and debugging code to save
complicated data types to files, Python allows you to use the popular data
interchange format called `JSON (JavaScript Object Notation)
<http://json.org>`_. The standard module called :mod:`json` can take Python
<https://json.org>`_. The standard module called :mod:`json` can take Python
data hierarchies, and convert them to string representations; this process is
called :dfn:`serializing`. Reconstructing the data from the string representation
is called :dfn:`deserializing`. Between serializing and deserializing, the