[issue17414] timeit.timeit not in __all__ even though documented

2013-03-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: Fred Drake, Eli Bendersky, and in particular, Guido ("I do see that it shouldn't be backported, but I don't see any worries about doing it in 3.4.") said that this is a 3.4-only enhancement. Anuj, ACKS are alphabetical. Åstrand is at the end because that is wh

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset dda8a6b8a351 by Terry Jan Reedy in branch 'default': Issue #17414: Add timeit, repeat, and default_timer to timeit.__all__. http://hg.python.org/cpython/rev/dda8a6b8a351 -- nosy: +python-dev ___ Python tr

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: As long as we are editing the module docstring, the last sentence should be deleted in 3.x patches, and the preceding sentence added to the preceding paragraph. In 3.3+, the paragraph beginning "The difference in default timer function" is obsolete and should

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-14 Thread Anuj Gupta
Anuj Gupta added the comment: I'm a new contributor so, not sure if I'm missing anything: The issue seems straightforward to me, the exports should definitely be included in both - the docstring and __all__. Also, default_timer is documented and should be imported as well. I've contributed a

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python, ezio.melotti stage: -> needs patch versions: +Python 2.7, Python 3.2, Python 3.4 ___ Python tracker

[issue17414] timeit.timeit not in __all__ even though documented

2013-03-14 Thread Chris Angelico
New submission from Chris Angelico: The timeit module is commonly used via the convenience function timeit.timeit, which is listed in the documentation as the recommended "Python Interface": http://docs.python.org/3/library/timeit.html However, this function is not listed in __all__, meaning th