| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-23183: Document the timeit output (GH-30359) | Hugo van Kemenade | 2022-01-14 | 1 | -0/+7 |
|
|
* | [docs] Use full names for time units (GH-28611) | Serhiy Storchaka | 2021-09-29 | 1 | -1/+1 |
|
|
* | Specify Python Cookbook edition for reference (GH-26301) | Terry Jan Reedy | 2021-05-21 | 1 | -2/+2 |
|
|
* | [doc] Fix padding in timeit (GH-22152) | Andre Delfino | 2020-09-08 | 1 | -1/+1 |
|
|
* | bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ... | Sander | 2020-05-02 | 1 | -1/+2 |
|
|
* | bpo-35138: Added an example for timeit.timeit with callable arguments (GH-9787) | Anders Hovmöller | 2019-05-13 | 1 | -1/+5 |
|
|
* | Fix grammar error in timeit module docs (GH-12066) | Shiv Dhar | 2019-02-27 | 1 | -1/+1 |
|
|
* | bpo-35738: Update the example for timer.Timer.repeat(). (GH-11559) | Henry Chen | 2019-01-15 | 1 | -1/+1 |
|
|
* | bpo-28240: timeit: Update repeat() doc (GH-7419) | Victor Stinner | 2018-06-06 | 1 | -4/+10 |
|
|
* | Improve highlighting of some code blocks. (GH-6401) | Serhiy Storchaka | 2018-04-08 | 1 | -3/+3 |
|
|
* | bpo-29662: fix wrong indentation in timeit.Timer's doc (GH-332) | Xiang Zhang | 2017-02-27 | 1 | -10/+10 |
|
|
* | Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead | Serhiy Storchaka | 2016-10-23 | 1 | -12/+11 |
|
|
* | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
|\ |
|
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| |\ |
|
* | | | timeit: add nsec (nanosecond) unit for format timings | Victor Stinner | 2016-10-18 | 1 | -1/+1 |
|
|
* | | | timeit: remove --clock and --time options | Victor Stinner | 2016-10-18 | 1 | -9/+1 |
|/ / |
|
* | | Add versionadded tag to docs for timeit.autorange | Steven D'Aprano | 2016-08-14 | 1 | -0/+2 |
|
|
* | | Issue6422 add autorange method to timeit.Timer | Steven D'Aprano | 2016-08-14 | 1 | -2/+17 |
|/ |
|
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -2/+1 |
|
|
* | Issue #26638: Fix links to some CLI options and section headings | Martin Panter | 2016-04-16 | 1 | -3/+3 |
|
|
* | Merge from 3.4 | Andrew Kuchling | 2015-04-21 | 1 | -0/+2 |
|\ |
|
| * | #15183: clarify timeit documentation to say that setup statement isn't timed | Andrew Kuchling | 2015-04-21 | 1 | -0/+2 |
|
|
* | | Issue #18983: Allow selection of output units in timeit. | Robert Collins | 2015-03-17 | 1 | -1/+7 |
|
|
* | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -6/+0 |
|\ \
| |/ |
|
| * | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -6/+0 |
|
|
* | | Issue #2527: Add a *globals* argument to timeit functions, in order to overri... | Antoine Pitrou | 2014-08-23 | 1 | -5/+31 |
|/ |
|
* | #18588: update the timeit examples to be consistent. | Ezio Melotti | 2014-08-04 | 1 | -9/+10 |
|
|
* | #18518: mention that including a return statement changes/breaks the behaviour | Andrew Kuchling | 2014-04-14 | 1 | -0/+6 |
|
|
* | Issue #16261: fix bare excepts in Doc/ | Andrew Svetlov | 2012-11-02 | 1 | -1/+1 |
|
|
* | #15979: merge with 3.2. | Ezio Melotti | 2012-10-02 | 1 | -99/+162 |
|\ |
|
| * | #15979: improve timeit documentation. | Ezio Melotti | 2012-10-02 | 1 | -105/+165 |
|
|
* | | Merge rst markup fixes in timeit docs with 3.2. | Ezio Melotti | 2012-09-20 | 1 | -10/+10 |
|\ \
| |/ |
|
| * | Fix rst markup in timeit docs. | Ezio Melotti | 2012-09-20 | 1 | -10/+10 |
|
|
* | | Update timeit documentation w.r.t default timer changes. | Georg Brandl | 2012-05-01 | 1 | -15/+15 |
|/ |
|
* | Issue #13478: document timeit.default_timer() | Sandro Tosi | 2012-04-24 | 1 | -8/+16 |
|
|
* | Fix closes Issue12697 - Update the usage syntax of timeit module in the docs. | Senthil Kumaran | 2011-08-06 | 1 | -6/+6 |
|
|
* | More source links. | Raymond Hettinger | 2011-01-27 | 1 | -0/+4 |
|
|
* | Fix usage of :option: in the docs (#9312). | Éric Araujo | 2010-11-18 | 1 | -9/+18 |
|
|
* | Last round of adapting style of documenting argument default values. | Georg Brandl | 2009-09-16 | 1 | -7/+6 |
|
|
* | Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,... | Benjamin Peterson | 2009-06-28 | 1 | -2/+3 |
|
|
* | Remove many "versionchanged" items that didn't use the official markup, | Georg Brandl | 2008-05-12 | 1 | -1/+1 |
|
|
* | Merged revisions 59259-59274 via svnmerge from | Christian Heimes | 2007-12-02 | 1 | -5/+6 |
|
|
* | Partial py3k-ification of Doc/library/: convert has_key references into eithe... | Collin Winter | 2007-09-01 | 1 | -8/+6 |
|
|
* | Get rid of the remaining versionadded/versionchanged directives. | Georg Brandl | 2007-09-01 | 1 | -11/+4 |
|
|
* | Move the 3k reST doc tree in place. | Georg Brandl | 2007-08-15 | 1 | -0/+243 |
|
|