diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/site.py | 2 | ||||
-rw-r--r-- | Lib/test/test_site.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index 14f4f80..4959cfc 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -366,7 +366,7 @@ def setcopyright(): dirs.extend([os.path.join(here, os.pardir), here, os.curdir]) builtins.license = _sitebuiltins._Printer( "license", - "See http://www.python.org/psf/license/", + "See https://www.python.org/psf/license/", files, dirs) diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 79af49c..e234164 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -410,6 +410,7 @@ class ImportSideEffectTests(unittest.TestCase): self.fail("sitecustomize not imported automatically") @test.support.requires_resource('network') + @test.support.system_must_validate_cert @unittest.skipUnless(sys.version_info[3] == 'final', 'only for released versions') @unittest.skipUnless(hasattr(urllib.request, "HTTPSHandler"), |