Skip to content

Commit a42215c

Browse files
gh-91838: Resolve more HTTP links which redirect to HTTPS (GH-95650) (GH-95780)
(cherry picked from commit cc9160a) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 25d0a81 commit a42215c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Doc/whatsnew/2.5.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,7 @@ https://www.sqlite.org.
20192019

20202020
.. seealso::
20212021

2022-
http://www.pysqlite.org
2022+
https://www.pysqlite.org
20232023
The pysqlite web page.
20242024

20252025
https://www.sqlite.org

Lib/posixpath.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def normpath(path):
364364
initial_slashes = path.startswith(sep)
365365
# POSIX allows one or two initial slashes, but treats three or more
366366
# as single slash.
367-
# (see http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13)
367+
# (see https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13)
368368
if (initial_slashes and
369369
path.startswith(sep*2) and not path.startswith(sep*3)):
370370
initial_slashes = 2

Lib/test/test_descrtut.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This contains most of the executable examples from Guido's descr
22
# tutorial, once at
33
#
4-
# http://www.python.org/2.2/descrintro.html
4+
# https://www.python.org/download/releases/2.2.3/descrintro/
55
#
66
# A few examples left implicit in the writeup were fleshed out, a few were
77
# skipped due to lack of interest (e.g., faking super() by hand isn't

Tools/c-analyzer/c_parser/parser/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
* ...
1414
15-
(see: http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf)
15+
(see: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf)
1616
1717
We have taken advantage of the elements of the C grammar that are used
1818
only in a few limited contexts, mostly as delimiters. They allow us to

0 commit comments

Comments
 (0)