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

2017-07-16 Thread Victor Stinner
I'm not sure that I understood your suggestion. Basically, if a test file fails, you would like to automatically re-run the failing test with test.bisect to identify the failing *methods*? Yeah, it's doable, but I didn't write it :-) It's very easy to run bisect: just replace "-m test" with "-m te

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

2017-07-16 Thread francismb
Hi Victor, On 07/13/2017 05:33 PM, Victor Stinner wrote: > Hi, > > I wrote a serie of new articles on my contributions to CPython during > 2017 Q1 and Q2. > > "My contributions to CPython during 2017 Q1" > https://haypo.github.io/contrib-cpython-2017q1.html > > "New Python test.bisect tool" > http

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]"

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

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

2017-07-13 Thread Victor Stinner
Hi, I wrote a serie of new articles on my contributions to CPython during 2017 Q1 and Q2. "My contributions to CPython during 2017 Q1" https://haypo.github.io/contrib-cpython-2017q1.html "New Python test.bisect tool" https://haypo.github.io/python-test-bisect.html "Work on Python buildbots, 201