diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-09 21:57:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-09 21:57:58 (GMT) |
commit | 4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c (patch) | |
tree | e57bfdc6c9ff29bf7e0f91d73e0c02f09ea5c659 /Doc | |
parent | ad46443e9d28553ad5dd8477ff5458fd07d53b77 (diff) | |
download | cpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.zip cpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.tar.gz cpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.tar.bz2 |
remove ceval timestamp support
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 9460b84..6ee6c49 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1104,18 +1104,6 @@ always available. thus may not be available in all Python implementations. -.. function:: 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 :file:`Python/ceval.c` in the Python sources. - - .. impl-detail:: - This function is intimately bound to CPython implementation details and - thus not likely to be implemented elsewhere. - - .. function:: set_coroutine_wrapper(wrapper) Allows intercepting creation of :term:`coroutine` objects (only ones that |