1. 3ef769f bpo-28240: timeit: Update repeat() doc (GH-7419) by Victor Stinner · 6 years ago
  2. ecf39bb bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331) by Xiang Zhang · 7 years ago
  3. d3ff784 Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead by Serhiy Storchaka · 8 years ago
  4. af48a91 Issue #28240: Fix formatting of the warning. by Victor Stinner · 8 years ago
  5. 62cca92 timeit: add newlines to output for readability by Victor Stinner · 8 years ago
  6. c3e40f8 timeit: add nsec (nanosecond) unit for format timings by Victor Stinner · 8 years ago
  7. 61de57f timeit: enhance format of raw timings (in verbose mode) by Victor Stinner · 8 years ago
  8. 3d7feb9 timeit: remove --clock and --time options by Victor Stinner · 8 years ago
  9. 1b90115 timeit: change default repeat to 5, instead of 3 by Victor Stinner · 8 years ago
  10. f8fb82c timeit: start autorange with 1 iteration, not 10 by Victor Stinner · 8 years ago
  11. 09f4f71 Issue6422 add autorange method to timeit.Timer by Steven D'Aprano · 8 years ago
  12. fc632e3 Merge with 3.5. by Serhiy Storchaka · 9 years ago
  13. 69de2a5 Issue #23552: Timeit now warns when there is substantial (4x) variance by Robert Collins · 9 years ago
  14. ced770d Issue #24631: Fixed regression in the timeit modulu with multyline setup. by Serhiy Storchaka · 9 years ago
  15. 1b560cb Issue #5633: Fixed timeit when the statement is a string and the setup is not. by Serhiy Storchaka · 9 years ago
  16. f28fa66 Issue #5633: Fixed timeit when the statement is a string and the setup is not. by Serhiy Storchaka · 9 years ago
  17. c3a7f18 Merge from 3.4 by Andrew Kuchling · 9 years ago
  18. 333518e #15183: clarify timeit documentation to say that setup statement isn't timed by Andrew Kuchling · 9 years ago
  19. 302dbc6 Issue #18983: Allow selection of output units in timeit. by Robert Collins · 9 years ago
  20. c959b0c Issue #18518: timeit now rejects statements which can't be compiled outside by Serhiy Storchaka · 9 years ago
  21. 2bef585 Issue #18518: timeit now rejects statements which can't be compiled outside by Serhiy Storchaka · 9 years ago
  22. ef3b9ed Issue #2527: Add a *globals* argument to timeit functions, in order to override the globals namespace in which the timed code is executed. by Antoine Pitrou · 10 years ago
  23. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  24. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  25. d49af5d Issue #17414: Add timeit, repeat, and default_timer to timeit.__all__. by Terry Jan Reedy · 11 years ago
  26. c9d77b2 Add an option to timeit to use time.process_time() and mark -t and -c as deprecated. by Georg Brandl · 12 years ago
  27. fe98e2f Issue #14428: Use the new time.perf_counter() and time.process_time() functions by Victor Stinner · 12 years ago
  28. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  29. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  30. abe9dc3 Issue 12514: Use try/finally to assure that timeit restores GC when done. by Raymond Hettinger · 13 years ago
  31. 3a081f5 Issue 12514: Use try/finally to assure that timeit restores GC when done. by Raymond Hettinger · 13 years ago
  32. c800af4 Update timeit to use the new string formatting syntax. by Raymond Hettinger · 13 years ago
  33. a88da67 #11578: add unit tests for timeit module. by R David Murray · 13 years ago
  34. 794f5b3 #4810: document "--" option separator in timeit help. by Georg Brandl · 14 years ago
  35. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  36. b646aa1 Localize the function lookup in timeit. by Raymond Hettinger · 15 years ago
  37. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  38. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  39. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  40. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  41. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  42. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  43. 816ed1b SF patch #868736: Disable GC for timeit by Raymond Hettinger · 21 years ago
  44. 5717208 Show microseconds, milliseconds or seconds, whichever is most natural, by Guido van Rossum · 21 years ago
  45. 7bdc484 Patch #808362: Fix typos. by Martin v. Löwis · 21 years ago
  46. c556722 remove unused import math by Neal Norwitz · 21 years ago
  47. 22952a3 SF bug 735293: Command line timeit.py sets sys.path badly by Raymond Hettinger · 21 years ago
  48. cfd5550 add a #! line for unix weenies by Skip Montanaro · 21 years ago
  49. fb2a6cc correct a couple docstring nits by Skip Montanaro · 21 years ago
  50. dd42edc Rename variables _seq to _it and seq to it, to emphasize that this is by Guido van Rossum · 21 years ago
  51. 0070f00 Change the default number of repetitions to 3, both in the Timer class by Guido van Rossum · 21 years ago
  52. 538f1d8 Implement some recommendations from Raymond H: by Guido van Rossum · 21 years ago
  53. 6e31aad Broke down and made it work for Python 2.0 and up. (Older versions by Guido van Rossum · 21 years ago
  54. 5573541 Add a note explaining why you shouldn't try to compute mean and by Guido van Rossum · 21 years ago
  55. e05dcce Simpler way to write reindent(), suggested by Raymond H. by Guido van Rossum · 21 years ago
  56. e8577b7 Add notes about baseline overhead, and about different Python by Guido van Rossum · 21 years ago
  57. b7ab600 Added more documentation. by Guido van Rossum · 21 years ago
  58. b3f09d4 A flexible utility to time the execution speed of a code snippet. by Guido van Rossum · 21 years ago