Message308498
FWIW, I see a win on OS X 10.12.6:
λ:[master !?](~/Code/src/python/cpython)=> cc --version
Apple LLVM version 8.1.0 (clang-802.0.42)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
λ:[master !?](~/Code/src/python/cpython)=> uname -a
Darwin ripley.attlocal.net 16.7.0 Darwin Kernel Version 16.7.0: Wed Oct 4 00:17:00 PDT 2017; root:xnu-3789.71.6~1/RELEASE_X86_64 x86_64
- Before:
λ:[master ?](~/Code/src/python/cpython)=> ./python.exe -m timeit -s "from binascii import unhexlify; b = b'aa'*2**20" "unhexlify(b)"
20 loops, best of 5: 11.3 msec per loop
- After:
λ:[master !?](~/Code/src/python/cpython)=> ./python.exe -m timeit -s "from binascii import unhexlify; b = b'aa'*2**20" "unhexlify(b)"
50 loops, best of 5: 4.15 msec per loop |
|
Date |
User |
Action |
Args |
2017-12-17 20:19:31 | meador.inge | set | recipients:
+ meador.inge, pitrou, serhiy.storchaka, sir-sigurd |
2017-12-17 20:19:31 | meador.inge | set | messageid: <1513541971.62.0.213398074469.issue32147@psf.upfronthosting.co.za> |
2017-12-17 20:19:31 | meador.inge | link | issue32147 messages |
2017-12-17 20:19:31 | meador.inge | create | |
|