Re: [Python-Dev] test_quopri, test_wait3, and test_popen2

2006-03-23 Thread Martin v. Löwis
Neal Norwitz wrote: > I played with this some last night and found the same ordering. I > have a different patch that also fixes the problem. It also fixes 2-3 > bugs I think. Basically the child could be waited on from outside > popen (or from 2 threads). The question is what should we do if t

Re: [Python-Dev] test_quopri, test_wait3, and test_popen2

2006-03-23 Thread Neal Norwitz
On 3/23/06, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > I have been looking into the (seemingly random) test_popen2 > failures today, and found that it fails when the tests I played with this some last night and found the same ordering. I have a different patch that also fixes the problem. It

Re: [Python-Dev] [Fwd: buildbot warnings in amd64 gentoo trunk]

2006-03-23 Thread Martin v. Löwis
Nick Coghlan wrote: > +1 on simply changing the messages to python-checkins instead of here - it > gives the build failure better context than it gets on python-dev, and > subscribing to python-checkins is a fair indication of willingness to receive > frequent automated mail ;) Ok, I changed th

[Python-Dev] test_quopri, test_wait3, and test_popen2

2006-03-23 Thread Martin v. Löwis
I have been looking into the (seemingly random) test_popen2 failures today, and found that it fails when the tests are run in the order given in the subject. Here is what happens: - test_quopri uses os.popen2, which in turn creates a popen2.Popen3 object. It processes stdin/stdout, but never ca

Re: [Python-Dev] r43214 - peps/trunk/pep-3000.txt

2006-03-23 Thread Martin v. Löwis
M.-A. Lemburg wrote: > That would be Donn Cave: > > http://bebits.com/app/4232 > > He's also the one who wrote the Bethon wrapper for the BeOS C++ API. > > BTW, the fact that you don't see new checkins doesn't necessarily > mean that a port is no longer used. It may just be that the existi

[Python-Dev] Patch to add timestamp() method to datetime objects

2006-03-23 Thread Chris AtLee
Hi, I've just submitted patch #1457227 which adds a convenience method to datetime objects to get the timestamp. It's equivalent to time.mktime(d.timetuple()), I just wanted to save myself some typing and be able to write d.timestamp() instead. I hope I have the dst code right. Would d.utctimes

Re: [Python-Dev] r43214 - peps/trunk/pep-3000.txt

2006-03-23 Thread Neal Norwitz
On 3/23/06, M.-A. Lemburg <[EMAIL PROTECTED]> wrote: > Martin v. Löwis wrote: > > M.-A. Lemburg wrote: > >>> And we still have someone actively interested in maintaining the OS2 > >>> port, it seems. > >> > >> Dito for BeOS, now under the name Zeta OS. > > > > Who is the one interested in maintaini

[Python-Dev] buildbot warnings in x86 XP-2 trunk

2006-03-23 Thread buildbot
The Buildbot has detected a new failure of x86 XP-2 trunk. Full details are available at: http://www.python.org/dev/buildbot/all/x86%20XP-2%20trunk/builds/96 Buildbot URL: http://www.python.org/dev/buildbot/all/ Build Reason: Build Source Stamp: [branch trunk] HEAD Blamelist: hyeshik.chang,mart

[Python-Dev] buildbot warnings in x86 XP trunk

2006-03-23 Thread buildbot
The Buildbot has detected a new failure of x86 XP trunk. Full details are available at: http://www.python.org/dev/buildbot/all/x86%20XP%20trunk/builds/120 Buildbot URL: http://www.python.org/dev/buildbot/all/ Build Reason: Build Source Stamp: [branch trunk] HEAD Blamelist: martin.v.loewis Buil

[Python-Dev] buildbot warnings in x86 W2k trunk

2006-03-23 Thread buildbot
The Buildbot has detected a new failure of x86 W2k trunk. Full details are available at: http://www.python.org/dev/buildbot/all/x86%20W2k%20trunk/builds/122 Buildbot URL: http://www.python.org/dev/buildbot/all/ Build Reason: Build Source Stamp: [branch trunk] HEAD Blamelist: martin.v.loewis Bu

Re: [Python-Dev] [Fwd: buildbot warnings in amd64 gentoo trunk]

2006-03-23 Thread Aahz
On Thu, Mar 23, 2006, Nick Coghlan wrote: > > +1 on simply changing the messages to python-checkins instead of > here - it gives the build failure better context than it gets on > python-dev, and subscribing to python-checkins is a fair indication of > willingness to receive frequent automated mail

[Python-Dev] buildbot warnings in sparc solaris10 gcc trunk

2006-03-23 Thread buildbot
The Buildbot has detected a new failure of sparc solaris10 gcc trunk. Full details are available at: http://www.python.org/dev/buildbot/all/sparc%20solaris10%20gcc%20trunk/builds/113 Buildbot URL: http://www.python.org/dev/buildbot/all/ Build Reason: Build Source Stamp: [branch trunk] HEAD Bla

[Python-Dev] release24-maint unfrozen, kinda

2006-03-23 Thread Anthony Baxter
2.4.3c1 is out, so the release24-maint branch is kinda unfrozen. I want to cut a 2.4.3 final next week, so please be very very cautious about checkins to the branch. A 2.4.4 will follow sometime in 6 months, or after 2.5 final is out, whichever is sooner. -- Anthony Baxter <[EMAIL PROTEC

[Python-Dev] buildbot warnings in x86 gentoo trunk

2006-03-23 Thread buildbot
The Buildbot has detected a new failure of x86 gentoo trunk. Full details are available at: http://www.python.org/dev/buildbot/all/x86%20gentoo%20trunk/builds/119 Buildbot URL: http://www.python.org/dev/buildbot/all/ Build Reason: Build Source Stamp: [branch trunk] HEAD Blamelist: hyeshik.chang

[Python-Dev] RELEASED Python 2.4.3, release candidate 1

2006-03-23 Thread Anthony Baxter
On behalf of the Python development team and the Python community, I'm happy to announce the release of Python 2.4.3 (release candidate 1). Python 2.4.3 is a bug-fix release. See the release notes at the website (also available as Misc/NEWS in the source distribution) for details of the more t

Re: [Python-Dev] r43214 - peps/trunk/pep-3000.txt

2006-03-23 Thread M.-A. Lemburg
Martin v. Löwis wrote: > M.-A. Lemburg wrote: >>> And we still have someone actively interested in maintaining the OS2 >>> port, it seems. >> >> Dito for BeOS, now under the name Zeta OS. > > Who is the one interested in maintaining the BeOS port? the last > checkins related to BeOS seem to origin

Re: [Python-Dev] [Fwd: buildbot warnings in amd64 gentoo trunk]

2006-03-23 Thread Nick Coghlan
Neal Norwitz wrote: > On 3/22/06, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: >> M.-A. Lemburg wrote: >>> For the Snake-Farm we had a separate mailing list, so I'd prefer >>> that if possible. This lets you opt-in to the messages and also >>> makes it easier to search via the python.org search fac

Re: [Python-Dev] Building Python for AMD64 (Windows)

2006-03-23 Thread Thomas Heller
Trent Mick wrote: > [Thomas Heller wrote] >> Linking... >>Creating library .\./python25.lib and object .\./python25.exp >> zipimport.obj : error LNK2001: unresolved external symbol __security_cookie >> traceback.obj : error LNK2001: unresolved external symbol __security_cookie >> typeobject.obj