diff options
author | Mats Wichmann <mats@linux.com> | 2023-10-17 15:12:15 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2023-10-17 15:44:50 (GMT) |
commit | e5086e3665965a3250b0ef8579c2107e68cf529b (patch) | |
tree | a0e28fd879b895327661785123a0e20819dc75f8 /testing | |
parent | 807cac7a2e2892d07e6cf0b4f74fe11c1a1fd9b4 (diff) | |
download | SCons-e5086e3665965a3250b0ef8579c2107e68cf529b.zip SCons-e5086e3665965a3250b0ef8579c2107e68cf529b.tar.gz SCons-e5086e3665965a3250b0ef8579c2107e68cf529b.tar.bz2 |
Elminate http: references
Most remaining http: references are either changed to https: or removed
or changed in case they were also stale links, and a replacement was
findable.
Does not affect schema and stylesheet references, which can remain http:
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestCmd.py | 2 | ||||
-rw-r--r-- | testing/framework/TestUnit/taprunner.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py index 48238a0..c207aa7 100644 --- a/testing/framework/TestCmd.py +++ b/testing/framework/TestCmd.py @@ -802,7 +802,7 @@ else: # From Josiah Carlson, # ASPN : Python Cookbook : Module to allow Asynchronous subprocess use on Windows and Posix platforms -# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/440554 +# https://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/440554 if sys.platform == 'win32': # and subprocess.mswindows: try: diff --git a/testing/framework/TestUnit/taprunner.py b/testing/framework/TestUnit/taprunner.py index 6f8cb00..b52c762 100644 --- a/testing/framework/TestUnit/taprunner.py +++ b/testing/framework/TestUnit/taprunner.py @@ -1,6 +1,6 @@ """ Format unittest results in Test Anything Protocol (TAP). -http://testanything.org/tap-version-13-specification.html +https://testanything.org/tap-version-13-specification.html Public domain work by: anatoly techtonik <techtonik@gmail.com> |