From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 14 Sep 2018 16:27:48 +0000 (-0700) Subject: Change the xkcd link in comment over https. (GH-9294) X-Git-Tag: v3.6.7rc1~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd844b0336376408d7cc3b7fd6830479cd9b3a91;p=thirdparty%2FPython%2Fcpython.git Change the xkcd link in comment over https. (GH-9294) (cherry picked from commit 83df50ea5757816c7338d27f21fd18b1e79206f7) Co-authored-by: 觉 --- diff --git a/Lib/antigravity.py b/Lib/antigravity.py index 9b1436803722..c6f174ca6d87 100644 --- a/Lib/antigravity.py +++ b/Lib/antigravity.py @@ -11,7 +11,7 @@ def geohash(latitude, longitude, datedow): 37.857713 -122.544543 ''' - # http://xkcd.com/426/ + # https://xkcd.com/426/ h = hashlib.md5(datedow).hexdigest() p, q = [('%f' % float.fromhex('0.' + x)) for x in (h[:16], h[16:32])] print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))