blob: 925163a585840adbc22d54f7fdd055f7d0b520b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Indirection for time functions.
We intentionally grab some "time" functions internally to avoid tests mocking "time" to affect
pytest runtime information (issue #185).
Fixture "mock_timing" also interacts with this module for pytest's own tests.
"""
from time import perf_counter
from time import sleep
from time import time
__all__ = ["perf_counter", "sleep", "time"]
|