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 Marco Sulla
Recipients Marco Sulla, methane
Date 2020-09-23.15:36:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600875419.8.0.334679823305.issue41835@roundup.psfhosted.org>
In-reply-to
Content
> `dict(**o)` is not common use case. Could you provide some other benchmarks?

You can do

python -m timeit -n 2000000 "dict(key1=1, key2=2, key3=3, key4=4, key5=5, key6=6, key7=7, key8=8, key9=9, key10=10)"

or with pyperf. In this case, since the dict is little, I observed a speedup of 25%.
History
Date User Action Args
2020-09-23 15:36:59Marco Sullasetrecipients: + Marco Sulla, methane
2020-09-23 15:36:59Marco Sullasetmessageid: <1600875419.8.0.334679823305.issue41835@roundup.psfhosted.org>
2020-09-23 15:36:59Marco Sullalinkissue41835 messages
2020-09-23 15:36:59Marco Sullacreate