This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: time.clock() docs wrong for Windows
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, tim.peters
Priority: normal Keywords:

Created on 2001-07-14 23:40 by tim.peters, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (2)
msg5406 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2001-07-14 23:40
Almost nothing about the time.clock() docs is correct 
on Windows.  Here's the Windows Truth:

On Windows, time.clock() uses the Win32 
QueryPerformanceCounter API.  The value returned is an 
approximation to wall-clock seconds elapsed since the 
first time time.clock() was called during a program 
run.  The resolution is typically better than a 
microsecond.
msg5407 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2001-07-16 15:42
Logged In: YES 
user_id=3066

Fixed in Doc/lib/libtime.tex revisions 1.42 and 1.37.4.3.
History
Date User Action Args
2022-04-10 16:04:12adminsetgithub: 34754
2001-07-14 23:40:09tim.peterscreate