[Python-checkins] cpython (3.5): Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.

christian.heimes python-checkins at python.org
Fri Sep 16 07:50:45 EDT 2016


https://hg.python.org/cpython/rev/b8ac4ee42ad3
changeset:   103859:b8ac4ee42ad3
branch:      3.5
parent:      103856:a5e8fe666c6b
user:        Christian Heimes <christian at python.org>
date:        Fri Sep 16 13:48:10 2016 +0200
summary:
  Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.

files:
  Lib/antigravity.py |  2 +-
  Misc/NEWS          |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Lib/antigravity.py b/Lib/antigravity.py
--- 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
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,8 @@
 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.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list