From: Christian Heimes Date: Fri, 16 Sep 2016 11:48:10 +0000 (+0200) Subject: Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. X-Git-Tag: v3.6.0b2~193^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4961e555b9b6b684f123cdbe426b4da22a1b460;p=python Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. --- diff --git a/Lib/antigravity.py b/Lib/antigravity.py index 7670187f83..9b14368037 100644 --- a/Lib/antigravity.py +++ b/Lib/antigravity.py @@ -2,7 +2,7 @@ import webbrowser import hashlib -webbrowser.open("http://xkcd.com/353/") +webbrowser.open("https://xkcd.com/353/") def geohash(latitude, longitude, datedow): '''Compute geohash() using the Munroe algorithm. diff --git a/Misc/NEWS b/Misc/NEWS index 3c1918357b..218513e70a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -71,6 +71,8 @@ Core and Builtins Library ------- +- Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. + - Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh and Markus Holtermann.