Re: [Python-Dev] [Python-checkins] cpython: Issue #11651: Move options for running tests into a Python script.

2011-08-02 Thread Nadeem Vawda
Thanks for catching that. Fixed in 0b52b6f1bfab. Nadeem ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] [Python-checkins] cpython (3.2): Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.

2011-08-02 Thread Stefan Krah
R. David Murray wrote: > On Tue, 02 Aug 2011 01:22:03 +0200, stefan.krah > wrote: > > Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug. > > See: https://bugzilla.redhat.com/show_bug.cgi?id=726536 > > +@unittest.skipIf(linux_distribution()[0] == 'Fedora', "Fedora > > set

Re: [Python-Dev] [Python-checkins] cpython (3.2): Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.

2011-08-02 Thread Ronald Oussoren
On 2 Aug, 2011, at 4:22, R. David Murray wrote: > On Tue, 02 Aug 2011 01:22:03 +0200, stefan.krah > wrote: >> http://hg.python.org/cpython/rev/68b5f87566fb >> changeset: 71683:68b5f87566fb >> branch: 3.2 >> parent: 71679:1f9ca1819d7c >> user:Stefan Krah >> date:Tue

Re: [Python-Dev] [Python-checkins] cpython (3.2): Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.

2011-08-02 Thread Stefan Krah
Stefan Krah wrote: > Fedora's glibc has an additional issue with the Turkish 'I' that can > be reproduced by the simple C program in: > > https://bugzilla.redhat.com/show_bug.cgi?id=726536 OK, this runs successfully on Ubuntu Lucid and FreeBSD (if you change the first tr_TR to tr_TR.UTF-8). B

Re: [Python-Dev] [Python-checkins] cpython (3.2): Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.

2011-08-02 Thread Scott Dial
On 8/2/2011 4:48 AM, Stefan Krah wrote: > R. David Murray wrote: >> If there are any helpful tests I can run on Gentoo, please let me know. > > Yes, you could run the small test program. If you get the same results > as on Fedora, then I wonder why the Gentoo buildbots are green. > > Do they hav

Re: [Python-Dev] [Python-checkins] cpython (3.2): Skip test_getsetlocale_issue1813() on Fedora due to setlocale() bug.

2011-08-02 Thread R. David Murray
On Tue, 02 Aug 2011 12:12:37 +0200, Stefan Krah wrote: > Stefan Krah wrote: > > Fedora's glibc has an additional issue with the Turkish 'I' that can > > be reproduced by the simple C program in: > > > > https://bugzilla.redhat.com/show_bug.cgi?id=726536 > > OK, this runs successfully on Ubunt

Re: [Python-Dev] cpython (3.2): Fix closes Issue12676 - Invalid identifier used in TypeError message in

2011-08-02 Thread Antoine Pitrou
On Tue, 02 Aug 2011 12:33:55 +0200 senthil.kumaran wrote: > raise TypeError("data should be a bytes-like object\ > -or an iterable, got %r " % type(it)) > +or an iterable, got %r " % type(data)) There are still a lot of spaces in yo

Re: [Python-Dev] email-6.0.0.a1

2011-08-02 Thread Chris Withers
On 19/07/2011 22:21, R. David Murray wrote: The basic additional API is that a 'source' attribute contains the text the generator read from the input source, and a 'value' attribute that contains the value with all the Content-Transfer-Encoding stuff undone so that you have a real unicode string.

Re: [Python-Dev] email-6.0.0.a1

2011-08-02 Thread R. David Murray
On Tue, 02 Aug 2011 18:48:11 +0100, Chris Withers wrote: > On 19/07/2011 22:21, R. David Murray wrote: > > The basic additional API is that a 'source' attribute contains the > > text the generator read from the input source, and a 'value' attribute > > that contains the value with all the Content

Re: [Python-Dev] cpython: NEWS note for bbeda42ea6a8

2011-08-02 Thread Antoine Pitrou
On Wed, 03 Aug 2011 00:30:41 +0200 benjamin.peterson wrote: > > diff --git a/Misc/NEWS b/Misc/NEWS > --- a/Misc/NEWS > +++ b/Misc/NEWS > @@ -10,6 +10,8 @@ > Core and Builtins > - > > +- Add ThreadError to threading.__all__. > + This should surely be in the library section. R

[Python-Dev] Fwd: [Python-checkins] devguide: Add Sandro to the list of core developers

2011-08-02 Thread Eric Smith
Speaking of developers.rst, could whoever added Jason Coombs also update developers.rst? I've added Jason to the committers mailing list. Thanks. Eric. Original Message Subject: [Python-checkins] devguide: Add Sandro to the list of core developers Date: Tue, 02 Aug 2011 14:58:38

Re: [Python-Dev] cpython: expose sched.h functions (closes #12655)

2011-08-02 Thread Georg Brandl
Am 03.08.2011 00:30, schrieb benjamin.peterson: > http://hg.python.org/cpython/rev/89e92e684b37 > changeset: 71704:89e92e684b37 > user:Benjamin Peterson > date:Tue Aug 02 17:30:04 2011 -0500 > summary: > expose sched.h functions (closes #12655) > +static PyObject * > +posix_sc