Re: [Python-Dev] Jython roadmap

2012-08-20 Thread martin
Zitat von "Juancarlo Añez (Apalala)" : It seems that Jython is under the Python Foundation, but I can't find a roadmap, a plan, or instructions about how to contribute to it reaching 2.7 and 3.3. Are there any pages that describe the process? Hi Juanca, These questions are best asked on

[Python-Dev] Jython roadmap

2012-08-20 Thread Juancarlo Añez (Apalala)
It seems that Jython is under the Python Foundation, but I can't find a roadmap, a plan, or instructions about how to contribute to it reaching 2.7 and 3.3. Are there any pages that describe the process? Thanks in advance, -- Juanca ___ Python-Dev

Re: [Python-Dev] [Python-checkins] cpython: s/path importer/path based finder/ (because the path based finder is not an

2012-08-20 Thread Nick Coghlan
On Tue, Aug 21, 2012 at 3:08 AM, Brett Cannon wrote: > Should that be "path-based"? I don't mind either way. I ain't trawling through to change it everywhere though - I've already done that once this week :) Cheers, Nick. -- Nick Coghlan | ncogh...@gmail.com | Brisbane, Australia _

Re: [Python-Dev] [Python-checkins] cpython: Close #4966: revamp the sequence docs in order to better explain the state of

2012-08-20 Thread Nick Coghlan
On Tue, Aug 21, 2012 at 3:01 AM, Terry Reedy wrote: > > > On 8/20/2012 3:14 AM, nick.coghlan wrote: >> >> +(5) >> + :meth:`clear` and :meth:`!copy` are included for consistency with the >> + interfaces of mutable containers that don't support slicing operations >> + (such as :class:`dict` an

Re: [Python-Dev] Raw I/O writelines() broken

2012-08-20 Thread Cameron Simpson
On 21Aug2012 02:39, Andrea Griffini wrote: | On Mon, Aug 20, 2012 at 11:42 PM, Antoine Pitrou wrote: | >> In the spirit of RawIO.write(), I think RawIO.writelines() could return | >> the number of bytes written (allowing for partial writes). | | When dealing with a non-blocking IO what you norma

Re: [Python-Dev] Raw I/O writelines() broken

2012-08-20 Thread Andrea Griffini
On Mon, Aug 20, 2012 at 11:42 PM, Antoine Pitrou wrote: >> In the spirit of RawIO.write(), I think RawIO.writelines() could return >> the number of bytes written (allowing for partial writes). When dealing with a non-blocking IO what you normally do is use number returned from the write call to m

Re: [Python-Dev] Raw I/O writelines() broken

2012-08-20 Thread R. David Murray
On Mon, 20 Aug 2012 23:42:56 +0200, Antoine Pitrou wrote: > On Mon, 20 Aug 2012 23:17:10 +0200 > Antoine Pitrou wrote: > > > > Hello, > > > > I was considering a FileIO.writelines() implementation based on > > writev() and I noticed that the current RawIO.writelines() > > implementation is brok

Re: [Python-Dev] Raw I/O writelines() broken

2012-08-20 Thread Antoine Pitrou
On Mon, 20 Aug 2012 23:17:10 +0200 Antoine Pitrou wrote: > > Hello, > > I was considering a FileIO.writelines() implementation based on > writev() and I noticed that the current RawIO.writelines() > implementation is broken: RawIO.write() can return a partial write but > writelines() ignores the

[Python-Dev] Raw I/O writelines() broken

2012-08-20 Thread Antoine Pitrou
Hello, I was considering a FileIO.writelines() implementation based on writev() and I noticed that the current RawIO.writelines() implementation is broken: RawIO.write() can return a partial write but writelines() ignores the result and happily proceeds to the next iterator item (and None is retu

Re: [Python-Dev] [Python-checkins] cpython: s/path importer/path based finder/ (because the path based finder is not an

2012-08-20 Thread Brett Cannon
Should that be "path-based"? On Sun, Aug 19, 2012 at 11:49 PM, nick.coghlan wrote: > http://hg.python.org/cpython/rev/2f9f5ab3d754 > changeset: 78664:2f9f5ab3d754 > user:Nick Coghlan > date:Mon Aug 20 13:49:08 2012 +1000 > summary: > s/path importer/path based finder/ (becaus

Re: [Python-Dev] PyPy 1.9 - Yard Wolf

2012-08-20 Thread Lehtonen Miko
moro ___ 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: s/path importer/path based finder/ (because the path based finder is not an

2012-08-20 Thread Barry Warsaw
On Aug 20, 2012, at 05:49 AM, nick.coghlan wrote: > s/path importer/path based finder/ (because the path based finder is not an > importer and the simpler 'path finder' is too ambiguous) +1! -Barry ___ Python-Dev mailing list Python-Dev@python.org ht