예제 #1
0
 def monotonic():
     return clock_gettime(CLOCK_MONOTONIC)
예제 #2
0
파일: test_time.py 프로젝트: sota/pypy-old
 def test_clock_monotonic(self):
     from __pypy__ import time
     a = time.clock_gettime(time.CLOCK_MONOTONIC)
     b = time.clock_gettime(time.CLOCK_MONOTONIC)
     assert a <= b
예제 #3
0
파일: utils.py 프로젝트: alex/tracebin
 def high_res_time():
     return time.clock_gettime(time.CLOCK_MONOTONIC_RAW)
예제 #4
0
파일: test_time.py 프로젝트: sota/pypy-old
 def test_clock_realtime(self):
     from __pypy__ import time
     res = time.clock_gettime(time.CLOCK_REALTIME)
     assert isinstance(res, float)