diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2021-07-30 14:34:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 14:34:04 (GMT) |
commit | 168879e366ec56b20fe4792b5851e8de32aaee87 (patch) | |
tree | 3b8e60317024e9d04c16f3c5b0ee8d4a01d57ba7 /Lib/lib2to3 | |
parent | a603aa472a38f778e2ed0cce73168e15f03c352c (diff) | |
download | cpython-168879e366ec56b20fe4792b5851e8de32aaee87.zip cpython-168879e366ec56b20fe4792b5851e8de32aaee87.tar.gz cpython-168879e366ec56b20fe4792b5851e8de32aaee87.tar.bz2 |
[3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)
(cherry picked from commit be42c06bb01206209430f3ac08b72643dc7cad1c)
Co-authored-by: Noah Kantrowitz <noah@coderanger.net>
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r-- | Lib/lib2to3/tests/data/py2_test_grammar.py | 2 | ||||
-rw-r--r-- | Lib/lib2to3/tests/data/py3_test_grammar.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py index b5a4137..8663161 100644 --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -735,7 +735,7 @@ hello world s = a[-5:] s = a[:-1] s = a[-4:-3] - # A rough test of SF bug 1333982. http://python.org/sf/1333982 + # A rough test of SF bug 1333982. https://python.org/sf/1333982 # The testing here is fairly incomplete. # Test cases should include: commas with 1 and 2 colons d = {} diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py index d062232..e1eee52 100644 --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -714,7 +714,7 @@ class GrammarTests(unittest.TestCase): s = a[-5:] s = a[:-1] s = a[-4:-3] - # A rough test of SF bug 1333982. http://python.org/sf/1333982 + # A rough test of SF bug 1333982. https://python.org/sf/1333982 # The testing here is fairly incomplete. # Test cases should include: commas with 1 and 2 colons d = {} |