Re: [Python-Dev] Multiprocessing maintenance

2010-10-25 Thread Jesse Noller
On Sat, Oct 23, 2010 at 2:20 PM, Antoine Pitrou wrote: > >> You mean: actively feeling responsible for it? I guess nobody - as for >> many other modules in the standard library. >> >> Or do you mean: who is willing to work on it, in principle? > > Both. Originally the module is/was meant to be off

Re: [Python-Dev] Multiprocessing maintenance

2010-10-25 Thread Jesse Noller
On Sat, Oct 23, 2010 at 2:10 PM, "Martin v. Löwis" wrote: >> Who is doing multiprocessing maintenance these days? I thought Ask >> Solem had been given commit privs for that, but I haven't seen any >> activity from him; and Jesse is, mostly, absent. Is anyone working on >> the multiprocessing issu

Re: [Python-Dev] Bug week-end on the 20th-21st?

2010-10-25 Thread Rodrigo Bernardo Pimentel
> Am 23.10.2010 19:08, schrieb Antoine Pitrou: >> >> Hello, >> >> The first 3.2 beta is scheduled by Georg for November 13th. >> What would you think of scheduling a bug week-end one week later, that >> is on November 20th and 21st? We would need enough core developers to >> be available on #python

[Python-Dev] Change to logging Formatters: support for alternative format styles

2010-10-25 Thread Vinay Sajip
I've just checked in a change to logging into the py3k branch (r85835), including doc changes and tests, for providing slightly more flexibility in alternative format styles for logging. Basically, Formatter.__init__ gets an extra optional keyword arg style=. This is then used to merge the format

Re: [Python-Dev] Bug week-end on the 20th-21st?

2010-10-25 Thread Jesse Noller
On Sat, Oct 23, 2010 at 1:08 PM, Antoine Pitrou wrote: > > Hello, > > The first 3.2 beta is scheduled by Georg for November 13th. > What would you think of scheduling a bug week-end one week later, that > is on November 20th and 21st? We would need enough core developers to > be available on #pyth

Re: [Python-Dev] Bug week-end on the 20th-21st?

2010-10-25 Thread R. David Murray
On Mon, 25 Oct 2010 12:22:24 -0200, Rodrigo Bernardo Pimentel wrote: >> Am 23.10.2010 19:08, schrieb Antoine Pitrou: >>> The first 3.2 beta is scheduled by Georg for November 13th. >>> What would you think of scheduling a bug week-end one week later, that >>> is on November 20th and 21st? We woul

Re: [Python-Dev] r85839 - python/branches/py3k/Python/sysmodule.c

2010-10-25 Thread Antoine Pitrou
On Mon, 25 Oct 2010 19:37:23 +0200 (CEST) victor.stinner wrote: > > -if (argc == 0) > -return; > argv0 = argv[0]; Well, are you sure argv[0] is valid when argc is 0? Regards Antoine. ___ Python-Dev mailing list Python-Dev@python.o

Re: [Python-Dev] Bug week-end on the 20th-21st?

2010-10-25 Thread Antoine Pitrou
On Mon, 25 Oct 2010 11:32:42 -0400 "R. David Murray" wrote: > On Mon, 25 Oct 2010 12:22:24 -0200, Rodrigo Bernardo Pimentel > wrote: > >> Am 23.10.2010 19:08, schrieb Antoine Pitrou: > >>> The first 3.2 beta is scheduled by Georg for November 13th. > >>> What would you think of scheduling a bug

[Python-Dev] Python bug week-end : 20-21 November

2010-10-25 Thread Antoine Pitrou
Hello, The development team of the Python interpreter (a.k.a python-dev) is organizing a bug week-end on Saturday 20th and Sunday 21st of November. We would like to encourage anyone who feels interested in participating to give it a try. Contributing to Python is much less intimidating than it s

Re: [Python-Dev] Multiprocessing maintenance

2010-10-25 Thread Antoine Pitrou
On Mon, 25 Oct 2010 10:01:43 -0400 Jesse Noller wrote: > On Sat, Oct 23, 2010 at 2:10 PM, "Martin v. Löwis" wrote: > >> Who is doing multiprocessing maintenance these days? I thought Ask > >> Solem had been given commit privs for that, but I haven't seen any > >> activity from him; and Jesse is,

Re: [Python-Dev] Multiprocessing maintenance

2010-10-25 Thread Jesse Noller
On Mon, Oct 25, 2010 at 7:19 PM, Antoine Pitrou wrote: > On Mon, 25 Oct 2010 10:01:43 -0400 > Jesse Noller wrote: >> On Sat, Oct 23, 2010 at 2:10 PM, "Martin v. Löwis" >> wrote: >> >> Who is doing multiprocessing maintenance these days? I thought Ask >> >> Solem had been given commit privs for

[Python-Dev] PyCon 2011 Reminder: Call for Proposals, Posters and Tutorials - us.pycon.org

2010-10-25 Thread Jesse Noller
PyCon 2011 Reminder: Call for Proposals, Posters and Tutorials - us.pycon.org === Well, it's October 25th! The leaves have turned and the deadline for submitting main-conference talk proposals expires in 7 days (November 1st, 2010)! We are currently acc

[Python-Dev] Issue 10194 - Adding a gc.remap() function

2010-10-25 Thread Peter Ingebretson
I have a patch that adds a new function to the gc module.  The gc.remap() function uses the tp_traverse mechanism to find all references to any keys in a provided mapping, and remaps these references in-place to instead point to the value corresponding to each key. The motivation for adding thi