Re: [Python-Dev] configuring the buildbot to skip some tests?

2010-05-14 Thread Martin v. Löwis
Vincent Davis wrote:
> Not to interrupt you  you conversation but I am interested in setting
> up a buildbot on one of my Macs. Is there any documentations or advise
> that is different from that of a linux machine?  Any advise would be
> appreciated.

This is a little bit out of context: what exactly do you want to set up?
A buildbot master, or a buildbot slave? For running what tests?

Buildbot is available from http://buildbot.net/trac

Regards,
Martin
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Summary of Python tracker Issues

2010-05-14 Thread Python tracker

ACTIVITY SUMMARY (2010-05-07 - 2010-05-14)
Python tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue 
number.  Do NOT respond to this message.


 2678 open (+43) / 17853 closed (+23) / 20531 total (+66)

Open issues with patches:  1090

Average duration of open issues: 722 days.
Median duration of open issues: 495 days.

Open Issues Breakdown
   open  2658 (+43)
languishing12 ( +0)
pending 7 ( +0)

Issues Created Or Reopened (72)
___

__import__ with fromlist=  2010-05-08
   http://bugs.python.org/issue2090reopened brett.cannon
 
   patch   

SSL handshake fails after TCP connection in getpeername()  2010-05-07
CLOSED http://bugs.python.org/issue4171reopened ddvoinikov  
 
   

A number tests "crash" if python is compiled --without-threads 2010-05-13
   http://bugs.python.org/issue7449reopened skrah   
 
   patch, easy, needs review   

pep-0370 on osx duplicates existing functionality  2010-05-08
   http://bugs.python.org/issue8084reopened mark.dickinson  
 
   patch, needs review, buildbot   

tiger buildbot: test_abspath_issue3426 failure (test_genericpa 2010-05-13
CLOSED http://bugs.python.org/issue8422reopened flox
 
   buildbot

PyUnicode_GetMax is undocumented   2010-05-07
   http://bugs.python.org/issue8647created  stutzbach   
 
   

The UTF-7 codec functions are undocumented 2010-05-07
   http://bugs.python.org/issue8648created  stutzbach   
 
   

Py_UNICODE_* functions are undocumented2010-05-07
   http://bugs.python.org/issue8649created  stutzbach   
 
   

zlibmodule.c isn't 64-bit clean2010-05-07
   http://bugs.python.org/issue8650created  pitrou  
 
   

"s#" and friends can silently truncate buffer length   2010-05-07
   http://bugs.python.org/issue8651created  pitrou  
 
   

Minor improvements to the "Handling Exceptions" part of the tu 2010-05-07
   http://bugs.python.org/issue8652created  marienz 
 
   

urlparse.urlparse/urlsplit doc missing 2010-05-07
   http://bugs.python.org/issue8653created  dabrahams   
 
   

Improve ABI compatibility between UCS2 and UCS4 builds 2010-05-07
   http://bugs.python.org/issue8654created  stutzbach   
 
   patch   

Problem with getpeercert in the ssl module when retrieving cli 2010-05-07
   http://bugs.python.org/issue8655created  Westly.Ward 
 
   

urllib2 mangles file://-scheme URLs2010-05-08
CLOSED http://bugs.python.org/issue8656created  dabrahams   
 
   

urlparse.urlunsplit should be smarter about +  2010-05-08
CLOSED http://bugs.python.org/issue8657created  dabrahams   
 
   patch   

urlparse.urlunsplit should be smarter about + and file urls2010-05-08
CLOSED http://bugs.python.org/issue8658created  orsenthil   
 
   patch   

ABS(x) == 0 can be simplified to x == 02010-05-08
CLOSED http://bugs.python.org/issue8659created  stutzbach   
 
   patch, needs review 

py3k weakref documentation me

Re: [Python-Dev] configuring the buildbot to skip some tests?

2010-05-14 Thread Bill Janssen
Vincent Davis  wrote:

> Not to interrupt you  you conversation but I am interested in setting
> up a buildbot on one of my Macs. Is there any documentations or advise
> that is different from that of a linux machine?  Any advise would be
> appreciated.

Assuming you mean "set up a build slave for Python testing"...

Here's what I did.  I was installing on a Tiger machine, which comes
with Python 2.3.5, so the first thing I did was to install Xcode 2.5,
the latest release for Tiger.  I also needed Subversion, so I downloaded
and installed that.  Later versions of OS X Xcode include Subversion, so
you won't need to do it separately if you're using those.

I then installed Python 2.6.5 from python.org, which winds up in
/usr/local/bin, and modified my PATH to put /usr/local/bin on it.  I
downloaded the source bundles for Twisted, zope.interface, and buildbot,
and installed them in that order -- "sudo python setup.py install" works
fine for each of them.

After that, I followed the instructions on the Wiki at
http://wiki.python.org/moin/BuildBot.  Create a buildbot account, make
sure /usr/local/bin is on the PATH of the buildbot account, and issue
the commands shown there.

Bill
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configuring the buildbot to skip some tests?

2010-05-14 Thread Vincent Davis
On Fri, May 14, 2010 at 10:15 AM, Bill Janssen  wrote:

> Vincent Davis  wrote:
>
> > Not to interrupt you  you conversation but I am interested in setting
> > up a buildbot on one of my Macs. Is there any documentations or advise
> > that is different from that of a linux machine?  Any advise would be
> > appreciated.
>
> Assuming you mean "set up a build slave for Python testing"...
>
> Here's what I did.  I was installing on a Tiger machine, which comes
> with Python 2.3.5, so the first thing I did was to install Xcode 2.5,
> the latest release for Tiger.  I also needed Subversion, so I downloaded
> and installed that.  Later versions of OS X Xcode include Subversion, so
> you won't need to do it separately if you're using those.
>
> I then installed Python 2.6.5 from python.org, which winds up in
> /usr/local/bin, and modified my PATH to put /usr/local/bin on it.  I
> downloaded the source bundles for Twisted, zope.interface, and buildbot,
> and installed them in that order -- "sudo python setup.py install" works
> fine for each of them.
>
> After that, I followed the instructions on the Wiki at
> http://wiki.python.org/moin/BuildBot.  Create a buildbot account, make
> sure /usr/local/bin is on the PATH of the buildbot account, and issue
> the commands shown there.


Yes thanks this is what I was thinking "set up a build slave for Python
testing", No reason this would not work on a leopard 10.6 machine?

Thanks

*Vincent Davis
720-301-3003 *
[email protected]
 my blog  |
LinkedIn
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] HEADS UP: Compilation risk with new GCC 4.5.0

2010-05-14 Thread Maciej Fijalkowski
On Wed, May 12, 2010 at 9:58 AM, Jeffrey Yasskin  wrote:
> On Wed, May 12, 2010 at 6:39 AM, James Y Knight  wrote:
>> I think you'll be a lot happier just modifying Psyco than making everyone
>> else in the world change their compiler flags.
>
> Aye, there's the rub. Nobody's happier modifying Psyco. :)  But that
> just means people will gradually have to stop using psyco in favor of
> maintainable JITs. Gcc's not going to change its stack requirements
> just because some people think they know what the ABI should be better
> than the people defining the ABI. Btw, this has been a problem since
> at least gcc-4.4.

Heh.

psyco already does it for Mac OS X (which defines 16 byte stack
alignment as ABI), so should be super trivial. Good rant Jeffrey
though.

Cheers,
fijal
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configuring the buildbot to skip some tests?

2010-05-14 Thread Martin v. Löwis
> Yes thanks this is what I was thinking "set up a build slave for Python
> testing", No reason this would not work on a leopard 10.6 machine?

In my experience, it is mandatory that the slave admin has really good
understanding of Python, and of the operating system that the slave runs
on. Otherwise, the slave will be down most of the time, and just not
function correctly; it was then a waste of time to set it up in the
first place.

Regards,
Martin
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configuring the buildbot to skip some tests?

2010-05-14 Thread Bill Janssen
Ronald Oussoren  wrote:

> Bill: could you please file an issue for this in the python tracker,

http://bugs.python.org/issue8716

> it should be possible to add a workaround for this to the Tkinter
> extension.

That would be good.

Bill
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com