This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author methane
Recipients Dennis Sweeney, danielfleischman, methane, rhettinger, serhiy.storchaka
Date 2021-07-09.02:42:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1625798579.83.0.975012555167.issue44555@roundup.psfhosted.org>
In-reply-to
Content
There is a macro benchmark we regularly used.
https://pyperformance.readthedocs.io/

You can try micro benchmark for most common use cases with pyperf like this:

```
$ pyperf timeit -s "def f(**kwargs): pass" -- "f(a=1,b=2,c=3)"
Mean +- std dev: 119 ns +- 3 ns
```
History
Date User Action Args
2021-07-09 02:42:59methanesetrecipients: + methane, rhettinger, serhiy.storchaka, Dennis Sweeney, danielfleischman
2021-07-09 02:42:59methanesetmessageid: <1625798579.83.0.975012555167.issue44555@roundup.psfhosted.org>
2021-07-09 02:42:59methanelinkissue44555 messages
2021-07-09 02:42:59methanecreate