diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2021-07-30 13:54:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 13:54:46 (GMT) |
commit | be42c06bb01206209430f3ac08b72643dc7cad1c (patch) | |
tree | 85df7eaca19021bab89cb63f7c8022dcbe13c2fb /Lib/ctypes/test | |
parent | ea4673ed0757e9bfe8774e60cfae3313e9927b5f (diff) | |
download | cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.zip cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.gz cpython-be42c06bb01206209430f3ac08b72643dc7cad1c.tar.bz2 |
Update URLs in comments and metadata to use HTTPS (GH-27458)
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r-- | Lib/ctypes/test/test_functions.py | 2 | ||||
-rw-r--r-- | Lib/ctypes/test/test_loading.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py index 7562892..d3c6536 100644 --- a/Lib/ctypes/test/test_functions.py +++ b/Lib/ctypes/test/test_functions.py @@ -389,7 +389,7 @@ class FunctionTestCase(unittest.TestCase): (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) def test_sf1651235(self): - # see http://www.python.org/sf/1651235 + # see https://www.python.org/sf/1651235 proto = CFUNCTYPE(c_int, RECT, POINT) def callback(*args): diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 7b930f9..ea89227 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -93,7 +93,7 @@ class LoaderTest(unittest.TestCase): # NOT fit into a 32-bit integer. FreeLibrary must be able # to accept this address. - # These are tests for http://www.python.org/sf/1703286 + # These are tests for https://www.python.org/sf/1703286 handle = LoadLibrary("advapi32") FreeLibrary(handle) |