]> granicus.if.org Git - python/commit
bpo-31773: time.perf_counter() uses again double (GH-3964)
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 12 Oct 2017 15:51:56 +0000 (08:51 -0700)
committerGitHub <noreply@github.com>
Thu, 12 Oct 2017 15:51:56 +0000 (08:51 -0700)
commitcba9a0c6def70549046f1afa6a80e38fe706520e
tree1700dda3a2a2170cc5d0766387fe6f020540c44c
parent0e61e67a57deb4abc677808201d7cf3c38138e02
bpo-31773: time.perf_counter() uses again double (GH-3964)

time.clock() and time.perf_counter() now use again C double
internally.

Remove also _PyTime_GetWinPerfCounterWithInfo(): use
_PyTime_GetPerfCounterDoubleWithInfo() instead on Windows.
Include/pytime.h
Modules/timemodule.c
Python/import.c
Python/pytime.c