changeset: 103859:b8ac4ee42ad3 branch: 3.5 parent: 103856:a5e8fe666c6b user: Christian Heimes date: Fri Sep 16 13:48:10 2016 +0200 files: Lib/antigravity.py Misc/NEWS description: Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. diff -r a5e8fe666c6b -r b8ac4ee42ad3 Lib/antigravity.py --- a/Lib/antigravity.py Fri Sep 16 14:43:58 2016 +0300 +++ b/Lib/antigravity.py Fri Sep 16 13:48:10 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 a5e8fe666c6b -r b8ac4ee42ad3 Misc/NEWS --- a/Misc/NEWS Fri Sep 16 14:43:58 2016 +0300 +++ b/Misc/NEWS Fri Sep 16 13:48:10 2016 +0200 @@ -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.