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

2017-07-14 Thread Terry Reedy
On 7/13/2017 11:33 AM, Victor Stinner wrote: I wrote a serie of new articles on my contributions to CPython during 2017 Q1 and Q2. ... "Work on Python buildbots, 2017 Q2" https://haypo.github.io/python-buildbots-2017q2.html "During this quarter, I tried to mark "easy" issues using a "[EASY]"

[Python-Dev] Summary of Python tracker Issues

2017-07-14 Thread Python tracker
ACTIVITY SUMMARY (2017-07-07 - 2017-07-14) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open6042 (+21) closed 36641 (+37) total 42683 (+58) Open issues wit

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

2017-07-14 Thread Ben Hoyt
Yeah, it was surprising to me too. I thought it'd be faster, but not that much. I did some quick cProfile tests, but that didn't show anything, and I think it's improvements to the bytecode interpreter and various bytecode instructions. (This particular test hammers the bytecode interpreter.) I'll

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

2017-07-14 Thread Paul Moore
On 14 July 2017 at 14:33, Victor Stinner 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

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

2017-07-14 Thread Victor Stinner
2017-07-14 13:37 GMT+02:00 Ben Hoyt : > Wow, amazing work. The Stinnerbot strikes again! Thanks. > 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 abou

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

2017-07-14 Thread Ben Hoyt
Wow, amazing work. The Stinnerbot strikes again! 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. -Ben On Jul 13, 2017 11:34 AM, "Victor