Use timeit.default_timer() instead of the deprecated time.clock()
commit6d0b3877b1b7f462742f9f2b95bdf146b7ee5668
authorChristoph Reiter <reiter.christoph@gmail.com>
Wed, 15 Aug 2018 15:04:45 +0000 (15 17:04 +0200)
committerChristoph Reiter <reiter.christoph@gmail.com>
Wed, 15 Aug 2018 20:32:40 +0000 (15 22:32 +0200)
tree28fecfce01255724ea4818f8e59694479f0ce1ed
parente3d412385703bc240e72ec13ea14e9a317bceb93
Use timeit.default_timer() instead of the deprecated time.clock()

default_timer() gives us the most precise time information on all platforms.
time.clock() will be removed with Python 3.8
tests/test_everything.py