summaryrefslogtreecommitdiff
path: root/Lib/timeit.py
Commit message (Expand)AuthorAgeFilesLines
* gh-90085: Remove vestigial -t and -c timeit options (#94941)Shantanu2022-10-071-3/+2
* bpo-40670: More reliable validation of statements in timeit.Timer. (GH-22358)Serhiy Storchaka2020-09-221-0/+1
* bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ...Sander2020-05-021-1/+2
* bpo-28240: timeit: Update repeat() doc (GH-7419)Victor Stinner2018-06-061-2/+2
* bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331)Xiang Zhang2017-02-281-1/+1
* Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... insteadSerhiy Storchaka2016-10-231-12/+13
* Issue #28240: Fix formatting of the warning.Victor Stinner2016-10-191-2/+1
* timeit: add newlines to output for readabilityVictor Stinner2016-10-181-1/+4
* timeit: add nsec (nanosecond) unit for format timingsVictor Stinner2016-10-181-3/+3
* timeit: enhance format of raw timings (in verbose mode)Victor Stinner2016-10-181-25/+38
* timeit: remove --clock and --time optionsVictor Stinner2016-10-181-7/+1
* timeit: change default repeat to 5, instead of 3Victor Stinner2016-10-181-1/+1
* timeit: start autorange with 1 iteration, not 10Victor Stinner2016-10-181-4/+6
* Issue6422 add autorange method to timeit.TimerSteven D'Aprano2016-08-151-11/+30
* Merge with 3.5.Serhiy Storchaka2015-10-061-0/+0
|\
* | Issue #23552: Timeit now warns when there is substantial (4x) varianceRobert Collins2015-08-261-13/+19
|/
* Issue #24631: Fixed regression in the timeit modulu with multyline setup.Serhiy Storchaka2015-07-151-4/+3
* Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-33/+20
|\
| * Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-3/+4
* | Merge from 3.4Andrew Kuchling2015-04-211-1/+2
|\ \ | |/
| * #15183: clarify timeit documentation to say that setup statement isn't timedAndrew Kuchling2015-04-211-1/+2
* | Issue #18983: Allow selection of output units in timeit.Robert Collins2015-03-181-9/+25
* | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+6
|\ \ | |/
| * Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+6
* | Issue #2527: Add a *globals* argument to timeit functions, in order to overri...Antoine Pitrou2014-08-221-12/+18
|/
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
|\
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
* | Issue #17414: Add timeit, repeat, and default_timer to timeit.__all__.Terry Jan Reedy2013-03-151-29/+17
|/
* Add an option to timeit to use time.process_time() and mark -t and -c as depr...Georg Brandl2012-05-011-5/+9
* Issue #14428: Use the new time.perf_counter() and time.process_time() functionsVictor Stinner2012-04-291-9/+3
* Merge 3.2Florent Xicluna2011-10-281-3/+3
|\
| * Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-3/+3
* | Issue 12514: Use try/finally to assure that timeit restores GC when done.Raymond Hettinger2011-07-291-3/+5
|\ \ | |/
| * Issue 12514: Use try/finally to assure that timeit restores GC when done.Raymond Hettinger2011-07-291-3/+5
* | Update timeit to use the new string formatting syntax.Raymond Hettinger2011-04-041-4/+4
|/
* #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