summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2016-09-16 11:49:16 (GMT)
committerChristian Heimes <christian@python.org>2016-09-16 11:49:16 (GMT)
commitde3f48ae9a5c807f1af26f2841a39a3667cc9760 (patch)
tree951fd6d791d8d20ef661e579f239774ae13fac5f
parentf8479eeb34de987a5683af9a0c446dc35b4fd534 (diff)
parenta4961e555b9b6b684f123cdbe426b4da22a1b460 (diff)
downloadcpython-de3f48ae9a5c807f1af26f2841a39a3667cc9760.zip
cpython-de3f48ae9a5c807f1af26f2841a39a3667cc9760.tar.gz
cpython-de3f48ae9a5c807f1af26f2841a39a3667cc9760.tar.bz2
Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.
-rw-r--r--Lib/antigravity.py2
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/antigravity.py b/Lib/antigravity.py
index 7670187..9b14368 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 1b5473c..803a6e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,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.