本文整理汇总了Python中time.CLOCK_MONOTONIC属性的典型用法代码示例。如果您正苦于以下问题:Python time.CLOCK_MONOTONIC属性的具体用法?Python time.CLOCK_MONOTONIC怎么用?Python time.CLOCK_MONOTONIC使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类time
的用法示例。
在下文中一共展示了time.CLOCK_MONOTONIC属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_clock_monotonic
# 需要导入模块: import time [as 别名]
# 或者: from time import CLOCK_MONOTONIC [as 别名]
def test_clock_monotonic(self):
a = time.clock_gettime(time.CLOCK_MONOTONIC)
b = time.clock_gettime(time.CLOCK_MONOTONIC)
self.assertLessEqual(a, b)
示例2: test_clock_settime
# 需要导入模块: import time [as 别名]
# 或者: from time import CLOCK_MONOTONIC [as 别名]
def test_clock_settime(self):
t = time.clock_gettime(time.CLOCK_REALTIME)
try:
time.clock_settime(time.CLOCK_REALTIME, t)
except PermissionError:
pass
if hasattr(time, 'CLOCK_MONOTONIC'):
self.assertRaises(OSError,
time.clock_settime, time.CLOCK_MONOTONIC, 0)