Kaydet (Commit) 67ca33db authored tarafından Victor Stinner's avatar Victor Stinner

Issue #22043: Oops, fix perf_counter() on UNIX if no monotonic clock is

available (unlikely)
üst 5488449b
......@@ -1046,9 +1046,8 @@ perf_counter(_Py_clock_info_t *info)
use_monotonic = 0;
PyErr_Clear();
}
#else
return floattime(info);
#endif
return floattime(info);
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment