summaryrefslogtreecommitdiffstats
path: root/Lib/timeit.py
Commit message (Expand)AuthorAgeFilesLines
* #11578: add unit tests for timeit module.R David Murray2011-03-161-2/+8
* #4810: document "--" option separator in timeit help.Georg Brandl2010-08-011-1/+2
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
* Localize the function lookup in timeit.Raymond Hettinger2009-04-031-2/+2
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-3/+3
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-3/+3
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-11/+53
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-9/+9
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
* SF patch #868736: Disable GC for timeitRaymond Hettinger2004-01-041-1/+7
* Show microseconds, milliseconds or seconds, whichever is most natural,Guido van Rossum2003-10-201-1/+9
* Patch #808362: Fix typos.Martin v. Löwis2003-09-201-1/+1
* remove unused import mathNeal Norwitz2003-06-291-1/+0
* SF bug 735293: Command line timeit.py sets sys.path badlyRaymond Hettinger2003-05-201-0/+5
* add a #! line for unix weeniesSkip Montanaro2003-04-081-0/+2
* correct a couple docstring nitsSkip Montanaro2003-04-081-3/+3
* Rename variables _seq to _it and seq to it, to emphasize that this isGuido van Rossum2003-03-211-5/+5
* Change the default number of repetitions to 3, both in the Timer classGuido van Rossum2003-03-151-12/+21
* Implement some recommendations from Raymond H:Guido van Rossum2003-03-141-10/+48
* Broke down and made it work for Python 2.0 and up. (Older versionsGuido van Rossum2003-03-071-24/+25
* Add a note explaining why you shouldn't try to compute mean andGuido van Rossum2003-03-061-0/+14
* 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
* 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