您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
375B

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