Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.
authorChristian Heimes <christian@python.org>
Fri, 16 Sep 2016 11:48:10 +0000 (13:48 +0200)
committerChristian Heimes <christian@python.org>
Fri, 16 Sep 2016 11:48:10 +0000 (13:48 +0200)
Lib/antigravity.py
Misc/NEWS

index 7670187f83af0cf13039643c3f55e2f2ae15b6bf..9b143680372210efed9dc507a069b1954ab1d54d 100644 (file)
@@ -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.
index 3c1918357bc4f4dc8de40c90b95bbab63e4a66db..218513e70a47125fa34cd7c4e6ef6e036e84eaf1 100644 (file)
--- 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.