[Python-Dev] Articles on my contributions to CPython during 2017 Q1 and Q2

Paul Moore p.f.moore at gmail.com
Fri Jul 14 10:20:47 EDT 2017


On 14 July 2017 at 14:33, Victor Stinner <victor.stinner at gmail.com> wrote:
>> A lot of great optimizations and bugfixes. Speaking of optimizations, I just
>> wrote some code which takes 12s on Python 2.7 and 5s on Python 3.5. so we're
>> doing something right! I might post about it shortly.
>
> Hum, I'm curious to see which kind of code becomes so much faster on Python 3.

time.sleep(5 if sys.version_info >= (3,) else 12)

:-)

Paul


More information about the Python-Dev mailing list