Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.

This commit is contained in:
Christian Heimes 2016-09-16 13:49:16 +02:00
commit de3f48ae9a
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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.