summaryrefslogtreecommitdiffstats
path: root/Lib/timeit.py
Commit message (Collapse)AuthorAgeFilesLines
* Broke down and made it work for Python 2.0 and up. (Older versionsGuido van Rossum2003-03-071-24/+25
| | | | | | | would have required refraining from using string methods -- too painful.) Changed the -s option so that multiple -s options are cumulative.
* Add a note explaining why you shouldn't try to compute mean andGuido van Rossum2003-03-061-0/+14
| | | | | standard deviation. Also add an XXX comment wondering if we should refrain from using itertools.repeat().
* Simpler way to write reindent(), suggested by Raymond H.Guido van Rossum2003-03-061-1/+1
|
* Add notes about baseline overhead, and about different PythonGuido van Rossum2003-03-061-6/+22
| | | | versions. Add -h/--help option to print doc string.
* Added more documentation.Guido van Rossum2003-03-061-9/+73
|
* A flexible utility to time the execution speed of a code snippet.Guido van Rossum2003-03-051-0/+123
Usable from the command line or from a program.