Staging
v0.5.1
https://github.com/python/cpython
Revision ddc613f20394eba25f2420f6d2fa62b277c95058 authored by Miss Islington (bot) on 29 May 2018, 00:16:43 UTC, committed by GitHub on 29 May 2018, 00:16:43 UTC
(cherry picked from commit 416c1ebd9896b394790dcb4f9f035b1a44ebe9ff)

Co-authored-by: Yury Selivanov <yury@magic.io>
1 parent 8d8b861
Raw File
Tip revision: ddc613f20394eba25f2420f6d2fa62b277c95058 authored by Miss Islington (bot) on 29 May 2018, 00:16:43 UTC
bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)
Tip revision: ddc613f
antigravity.py

import webbrowser
import hashlib

webbrowser.open("https://xkcd.com/353/")

def geohash(latitude, longitude, datedow):
    '''Compute geohash() using the Munroe algorithm.

    >>> geohash(37.421542, -122.085589, b'2005-05-26-10458.68')
    37.857713 -122.544543

    '''
    # http://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:]))
back to top