From bd979b2d2b30ff2bfa44bdbbaba9d7a30900102c Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 14 Sep 2018 09:28:07 -0700 Subject: [PATCH] Change the xkcd link in comment over https. (GH-9293) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit (cherry picked from commit 83df50ea5757816c7338d27f21fd18b1e79206f7) Co-authored-by: 觉 --- Lib/antigravity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:])) -- 2.47.3