[Python-Dev] python-checkins is down

2009-05-25 Thread Benjamin Peterson
I haven't gotten emails for any of the commits I've done in the last 12 hours or so. -- Regards, Benjamin ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/o

Re: [Python-Dev] python-checkins is down

2009-05-25 Thread Aahz
On Mon, May 25, 2009, Benjamin Peterson wrote: > > I haven't gotten emails for any of the commits I've done in the last > 12 hours or so. Forwarded to postmas...@python.org -- if there's a problem with the checkins process itself, that won't help. Have you verified that the commits are landing?

Re: [Python-Dev] python-checkins is down

2009-05-25 Thread Antoine Pitrou
Aahz pythoncraft.com> writes: > > Forwarded to postmaster python.org -- if there's a problem with the > checkins process itself, that won't help. Have you verified that the > commits are landing? (I.e. is svn working properly?) Yes, it is. > Also, if you > could double-check the python-chec

Re: [Python-Dev] PEP 384: Defining a Stable ABI

2009-05-25 Thread M.-A. Lemburg
Martin v. Löwis wrote: > Thomas Wouters reminded me of a long-standing idea; I finally > found the time to write it down. > > Please comment! > ... > Up until this PEP proposal, we had a very simple scheme for the Python C-API: all documented functions and variables with a "Py" prefix were part o

Re: [Python-Dev] PEP 384: Defining a Stable ABI

2009-05-25 Thread Nick Coghlan
M.-A. Lemburg wrote: > Now, with the PEP, I have a feeling that the Python C-API > will in effect be limited to what's in the PEP's idea of > a usable ABI and open up the non-inluded public C-APIs > to the same rate of change as the private APIs. Not really - before this PEP it was already fairly

[Python-Dev] FWD: python-checkins is down

2009-05-25 Thread Aahz
- Forwarded message from Ralf Hildebrandt - > Date: Mon, 25 May 2009 21:59:32 +0200 > From: Ralf Hildebrandt > To: Patrick Ben Koetter > Cc: Aahz , postmas...@python.org > Subject: Re: FWD: Re: [Python-Dev] python-checkins is down > > * Patrick Ben Koetter : >> This just hit python-ch

[Python-Dev] Arguments of MatchObject in re module

2009-05-25 Thread MRAB
I've just noticed an oddity of the re module while looking at the sources. I'll illustrate it below: >>> import re >>> p = re.compile("foo") >>> help(p.match) Help on built-in function match: match(...) match(string[, pos[, endpos]]) --> match object or None. Matches zero or more charact