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 xiang.zhang
Recipients mark.dickinson, meador.inge, serhiy.storchaka, xiang.zhang
Date 2017-05-02.13:40:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493732444.07.0.00832753955468.issue30224@psf.upfronthosting.co.za>
In-reply-to
Content
There seems no significant regression in performance. A microbenchmark against nu_longlong:

./python3 -m perf timeit --duplicate=1000 --compare-to /home/angwer/repos/cpython/python -s 'import struct; p = struct.Struct("@L")' 'p.unpack(b"d\x00\x00\x00\x00\x00\x00\x00")'
python: ..................... 156 ns +- 10 ns
python3: ..................... 157 ns +- 9 ns

Median +- std dev: [python] 156 ns +- 10 ns -> [python3] 157 ns +- 9 ns: 1.01x slower
Not significant!
History
Date User Action Args
2017-05-02 13:40:44xiang.zhangsetrecipients: + xiang.zhang, mark.dickinson, meador.inge, serhiy.storchaka
2017-05-02 13:40:44xiang.zhangsetmessageid: <1493732444.07.0.00832753955468.issue30224@psf.upfronthosting.co.za>
2017-05-02 13:40:44xiang.zhanglinkissue30224 messages
2017-05-02 13:40:43xiang.zhangcreate