summaryrefslogtreecommitdiff
path: root/Lib/timeit.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-3/+4
* Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+6
* Issue #11578: Backported test for the timeit module.Serhiy Storchaka2015-01-261-2/+8
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
* Issue 12514: Use try/finally to assure that timeit restores GC when done.Raymond Hettinger2011-07-281-3/+5
* Merged revisions 83393,83396,83398,83405,83408 via svnmerge fromGeorg Brandl2010-08-011-1/+2
* replace callable()Benjamin Peterson2009-10-091-3/+3
* Localize the function lookup in timeit.Raymond Hettinger2009-04-031-2/+2
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-4/+4
* Patch #1533909: the timeit module now accepts callables in addition toGeorg Brandl2007-03-131-11/+53
* 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