From 6398a2413f41319e5a5b4576df4864ac25f071b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A7=89?= Date: Wed, 31 Jan 2018 02:06:52 +0800 Subject: [PATCH] Change the xkcd link in comment over https. --- Lib/antigravity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/antigravity.py b/Lib/antigravity.py index 9b143680372210..c6f174ca6d8736 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:]))