changeset: 103860:0820d023077e branch: 3.6 parent: 103857:9bf370a33938 parent: 103859:b8ac4ee42ad3 user: Christian Heimes date: Fri Sep 16 13:49:16 2016 +0200 files: Misc/NEWS description: Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. diff -r 9bf370a33938 -r 0820d023077e Lib/antigravity.py --- a/Lib/antigravity.py Fri Sep 16 14:45:15 2016 +0300 +++ b/Lib/antigravity.py Fri Sep 16 13:49:16 2016 +0200 @@ -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 -r 9bf370a33938 -r 0820d023077e Misc/NEWS --- a/Misc/NEWS Fri Sep 16 14:45:15 2016 +0300 +++ b/Misc/NEWS Fri Sep 16 13:49:16 2016 +0200 @@ -27,6 +27,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.