From a4961e555b9b6b684f123cdbe426b4da22a1b460 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 16 Sep 2016 13:48:10 +0200 Subject: [PATCH] Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. --- Lib/antigravity.py | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/antigravity.py b/Lib/antigravity.py index 7670187f83a..9b143680372 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 3c1918357bc..218513e70a4 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.