[Python-Dev] urlparse.urlunsplit should be smarter about +

2010-05-08 Thread Stephen J. Turnbull
David Abrahams writes: > > This is a bug report. bugs.python.org seems to be down. > > >>> from urlparse import * > >>> urlunsplit(urlsplit('git+file:///foo/bar/baz')) > git+file:/foo/bar/baz > > Note the dropped slashes after the colon. That's clearly wrong, but what does "+" ha

Re: [Python-Dev] urlparse.urlunsplit should be smarter about +

2010-05-08 Thread John Arbash Meinel
Stephen J. Turnbull wrote: > David Abrahams writes: > > > > This is a bug report. bugs.python.org seems to be down. > > > > >>> from urlparse import * > > >>> urlunsplit(urlsplit('git+file:///foo/bar/baz')) > > git+file:/foo/bar/baz > > > > Note the dropped slashes after the colon

[Python-Dev] Parallel test execution on buildbot

2010-05-08 Thread exarkun
Hi all, Has anyone considered using regrtest's -j option in the buildbot configuration to speed up the test runs? Antoine Pitrou pointed out that even for single CPU slaves, this could be a win due to the number of tests that spend time sleeping or waiting on I/O. And on slaves with multipl

Re: [Python-Dev] Parallel test execution on buildbot

2010-05-08 Thread Antoine Pitrou
Hi, > Has anyone considered using regrtest's -j option in the buildbot > configuration to speed up the test runs? Perhaps some buildbots are doing other useful tasks, in addition to simply building Python. This should probably be a case by case setting. I don't know how easy it is to add specif

[Python-Dev] [RELEASED] Python 2.7 beta 2

2010-05-08 Thread Benjamin Peterson
On behalf of the Python development team, I'm elated to announce the second beta release of Python 2.7. Python 2.7 is scheduled (by Guido and Python-dev) to be the last major version in the 2.x series. 2.7 will have an extended period of bugfix maintenance. 2.7 includes many features that were f

Re: [Python-Dev] Parallel test execution on buildbot

2010-05-08 Thread Martin v. Löwis
> Has anyone considered using regrtest's -j option in the buildbot > configuration to speed up the test runs? Yes, I did. I turned it off again when the tests started failing because of it. Regards, Martin ___ Python-Dev mailing list Python-Dev@python.o

[Python-Dev] bugs.python.org intermittently not working.

2010-05-08 Thread Terry Reedy
Saturday eve (us, eastern). Last night I had intermittent problems with bugs.python.org: issues not being fetched, submissions not being recorded. David Abrahams reported 'bugs.python.org seems to be down' is his urlparse thread. Right not, I have a fetch and submission 'loading' for over a mi

Re: [Python-Dev] Parallel test execution on buildbot

2010-05-08 Thread Nick Coghlan
Martin v. Löwis wrote: >> Has anyone considered using regrtest's -j option in the buildbot >> configuration to speed up the test runs? > > Yes, I did. I turned it off again when the tests started failing because > of it. Yeah, a lot of our tests weren't written with parallel execution in mind (e.