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 methane, serhiy.storchaka, vstinner
Date 2019-06-20.16:03:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561046614.98.0.536339793316.issue37348@roundup.psfhosted.org>
In-reply-to
Content
> Most of changes are in not performance sensitive code. I do not think there is a benefit of using new macro there.

Because I used just sed.

> If PyUnicode_FromString() is slow I prefer to optimize it instead of adding yet one esoteric private function for internal needs.

OK.  There are some code like `PyUnicode_FromString(name)`.  Optimizing PyUnicode_FromString will be more effective.  I created PR 14273.


> In case of dict.__repr__() we can get even more gain by using _Py_IDENTIFIER or more general API proposed by Victor.

Of course, I used it just for micro benchmarking.  Optimizing it is not a goal.  In case of PR 14273:

$ ./python -m pyperf timeit -s 'd={}' -- 'repr(d)'
.....................
Mean +- std dev: 138 ns +- 2 ns
History
Date User Action Args
2019-06-20 16:03:35methanesetrecipients: + methane, vstinner, serhiy.storchaka
2019-06-20 16:03:34methanesetmessageid: <1561046614.98.0.536339793316.issue37348@roundup.psfhosted.org>
2019-06-20 16:03:34methanelinkissue37348 messages
2019-06-20 16:03:34methanecreate