[issue35138] timeit documentation should have example with function arguments

2019-05-13 Thread STINNER Victor
STINNER Victor added the comment: Thanks Anders Hovmöller! Example added to Python 3.7 and 3.8 documentation :-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue35138] timeit documentation should have example with function arguments

2019-05-13 Thread miss-islington
miss-islington added the comment: New changeset 7f485ea4fc17c5afb38cd0478ff15326fb5a47fc by Miss Islington (bot) in branch '3.7': bpo-35138: Added an example for timeit.timeit with callable arguments (GH-9787) https://github.com/python/cpython/commit/7f485ea4fc17c5afb38cd0478ff15326fb5a47fc

[issue35138] timeit documentation should have example with function arguments

2019-05-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8da5ebe11e0cb6599af682b22f7c2b2b7b9debd8 by Victor Stinner (Anders Hovmöller) in branch 'master': bpo-35138: Added an example for timeit.timeit with callable arguments (GH-9787)

[issue35138] timeit documentation should have example with function arguments

2019-05-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +13205 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35138] timeit documentation should have example with function arguments

2018-11-01 Thread davidak
Change by davidak : -- keywords: +patch pull_requests: +9598 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue35138] timeit documentation should have example with function arguments

2018-11-01 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: There is an open PR that adds a similar example. Is it the same as the one you are proposing and I think you can add a review comment to add it with the same PR if it's different? PR : https://github.com/python/cpython/pull/9787 Thanks

[issue35138] timeit documentation should have example with function arguments

2018-11-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +easy stage: -> needs patch type: -> enhancement versions: +Python 3.8 ___ Python tracker ___

[issue35138] timeit documentation should have example with function arguments

2018-11-01 Thread davidak
New submission from davidak : It is described here: https://www.pythoncentral.io/time-a-python-function/ I have just tested it. Works as expected. Best would be if timeit supports this natively. -- assignee: docs@python components: Documentation messages: 329079 nosy: davidak,