changeset: 103861:7ebd6271094d parent: 103858:2fc89d6eff20 parent: 103860:0820d023077e user: Christian Heimes date: Fri Sep 16 13:49:29 2016 +0200 files: Misc/NEWS description: Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. diff -r 2fc89d6eff20 -r 7ebd6271094d Lib/antigravity.py --- a/Lib/antigravity.py Fri Sep 16 14:45:57 2016 +0300 +++ b/Lib/antigravity.py Fri Sep 16 13:49:29 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 2fc89d6eff20 -r 7ebd6271094d Misc/NEWS --- a/Misc/NEWS Fri Sep 16 14:45:57 2016 +0300 +++ b/Misc/NEWS Fri Sep 16 13:49:29 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.