sys.settscdump(on_flag)
Activate dumping of VM measurements using the Pentium timestamp counter, if on_flag is true. Deactivate these dumps if on_flag is off. The function is available only if Python was compiled with --with-tsc
. To understand the output of this dump, read Python/ceval.c
in the Python sources.
CPython implementation detail: This function is intimately bound to CPython implementation details and thus not likely to be implemented elsewhere.
Please login to continue.