Re: [Python-Dev] Python-versus-CPython question for __mul__ dispatch

2015-05-19 Thread Kevin Modzelewski
We have a similar experience -- Pyston runs into a similar issue with sqlalchemy (with "str() + foo" calling foo.__radd__ before str.sq_concat) and we are working to match CPython's behavior. On Tue, May 19, 2015 at 7:00 AM, Armin Rigo wrote: > Hi Nick, > > On 16 May 2015 at 10:31, Nick Coghlan

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Terry Reedy
On 5/19/2015 11:02 AM, Kushal Das wrote: Hi, With the help of CentOS project I am happy to announce an automated system [1] to test patches from bugs.python.org. This can be fully automated to test the patches whenever someone uploads a patch in the roundup, but for now it accepts IRC commands o

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Wes Turner
Here's a GerritChangeSource for BuildBot events: http://docs.buildbot.net/latest/full.html#chsrc-GerritChangeSource Great idea, thanks again! On Tue, May 19, 2015 at 1:25 PM, Wes Turner wrote: > http://docs.buildbot.net/latest/search.html?q=docker ... > > Here's a BuildBot Dockerfile: > http://

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Wes Turner
http://docs.buildbot.net/latest/search.html?q=docker ... Here's a BuildBot Dockerfile: http://docs.buildbot.net/latest/manual/cfg-buildslaves-docker.html#image-creation On Tue, May 19, 2015 at 1:22 PM, Wes Turner wrote: > Cool! Thanks! > > BuildBot integration? > > * http://docs.buildbot.net/la

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Brett Cannon
In the airport but I wanted to say thanks for this! On Tue, May 19, 2015, 11:03 Kushal Das wrote: > Hi, > > With the help of CentOS project I am happy to announce an automated > system [1] to test patches from bugs.python.org. This can be fully > automated > to test the patches whenever someone

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Wes Turner
Cool! Thanks! BuildBot integration? * http://docs.buildbot.net/latest/full.html#source-stamps * http://docs.buildbot.net/latest/full.html#enabling-the-irc-bot * http://docs.buildbot.net/latest/full.html#choosing-a-change-source https://github.com/audreyr/cookiecutter-pypackage (requirements.txt,

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Kushal Das
On 19/05/15, Berker Peksağ wrote: > On Tue, May 19, 2015 at 6:02 PM, Kushal Das wrote: > > Hi, > > > > With the help of CentOS project I am happy to announce an automated > > system [1] to test patches from bugs.python.org. This can be fully automated > > to test the patches whenever someone uploa

Re: [Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Berker Peksağ
On Tue, May 19, 2015 at 6:02 PM, Kushal Das wrote: > Hi, > > With the help of CentOS project I am happy to announce an automated > system [1] to test patches from bugs.python.org. This can be fully automated > to test the patches whenever someone uploads a patch in the roundup, but > for now it ac

[Python-Dev] Automated testing of patches from bugs.python.org

2015-05-19 Thread Kushal Das
Hi, With the help of CentOS project I am happy to announce an automated system [1] to test patches from bugs.python.org. This can be fully automated to test the patches whenever someone uploads a patch in the roundup, but for now it accepts IRC commands on #python-dev channel. I worked on a docker

Re: [Python-Dev] Python-versus-CPython question for __mul__ dispatch

2015-05-19 Thread Armin Rigo
Hi Nick, On 16 May 2015 at 10:31, Nick Coghlan wrote: > Oh, that's rather annoying that the PyPy team implemented bug-for-bug > compatibility there, and didn't follow up on the operand precedence > bug report to say that they had done so. It's sadly not the only place, by far, where a behavior o