[Python-Dev] M.L.S.(Multiple Language Support) in Core-Compiler

2009-09-11 Thread R.
How to adapt the existing M.L.S. from Compilermessages to
Core-Compiler-Words.

Where to begin, for implemantation of this feature?



___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] pthreads, fork, import, and execvp

2009-09-11 Thread Thomas Wouters
On Fri, Sep 11, 2009 at 08:06, Cameron Simpson  wrote:

> On 25Jul2009 10:25, Gregory P. Smith  wrote:
> | On Thu, Jul 23, 2009 at 4:28 PM, Thomas Wouters
> wrote:
> | > So attached (and at http://codereview.appspot.com/96125/show ) is a
> | > preliminary fix, correcting the problem with os.fork(), os.forkpty()
> and
> | > os.fork1(). This doesn't expose a general API for C code to use, for
> two
> | > reasons: it's not easy, and I need this fix more than I need the API
> change
> | > :-) (I actually need this fix myself for Python 2.4, but it applies
> fairly
> | > cleanly.)
> |
> | This looks good to me.
> [...]
>
> Where's this stand with respect to the upcoming Python 2.6.3?


Unless anyone speaks up, I'll submit the fix (without the change in
semantics on AIX) to release26-maint early next week, so it would be in
2.6.3.

-- 
Thomas Wouters 

Hi! I'm a .signature virus! copy me into your .signature file to help me
spread!
___
Python-Dev mailing list
[email protected]
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 2.6.3

2009-09-11 Thread Barry Warsaw

On Sep 10, 2009, at 12:57 PM, Martin v. Löwis wrote:


Barry Warsaw schrieb:
I had previously wanted to release Python 2.6.3 over the summer,  
but for
various personal reasons, the summer was just too insane.  I'd like  
to
reschedule a 2.6.3 release, shooting for final release on 25- 
September.


I'm travelling that week (as well as the time until then), so I would
prefer to make it a week later.


Cool, thanks Martin.  Let's make it:

2.6.3rc1 on 29-sep
2.6.3 final on 02-oct

That gives us an extra day between rc and final.

-Barry



PGP.sig
Description: This is a digitally signed message part
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Summary of Python tracker Issues

2009-09-11 Thread Python tracker

ACTIVITY SUMMARY (09/04/09 - 09/11/09)
Python tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue 
number.  Do NOT respond to this message.


 2394 open (+32) / 16312 closed (+15) / 18706 total (+47)

Open issues with patches:   950

Average duration of open issues: 660 days.
Median duration of open issues: 416 days.

Open Issues Breakdown
   open  2361 (+32)
pending32 ( +0)

Issues Created Or Reopened (48)
___

should we include argparse   09/10/09
   http://bugs.python.org/issue6247reopened michael.foord   
  
   

httplib's _read_chunked extremely slow for lots of chunks09/04/09
CLOSED http://bugs.python.org/issue6838created  cjw296  
  
   easy

zipfile can't extract file   09/04/09
   http://bugs.python.org/issue6839created  NewerCookie 
  
   

genericpath: _splitext returns '.ext', '' instead of '', '.ext'  09/04/09
CLOSED http://bugs.python.org/issue6840created  optimix 
  
   patch   

A typo in Doc/library/stdtypes.rst   09/05/09
CLOSED http://bugs.python.org/issue6841created  cheeselee   
  
   patch   

program run in interpreter, fails at command line09/05/09
CLOSED http://bugs.python.org/issue6842created  jvanpraag   
  
   

No documentation for the module argument to warnings.filterwarni 09/05/09
CLOSED http://bugs.python.org/issue6843reopened exarkun 
  
   

BaseException DeprecationError raises inappropriately09/05/09
   http://bugs.python.org/issue6844created  aisaac  
  
   

Restart support in binary upload for ftplib  09/05/09
   http://bugs.python.org/issue6845created  pablomouzo  
  
   patch   

bytearray.pop() returns negative ints09/05/09
CLOSED http://bugs.python.org/issue6846created  hagen   
  
   patch   

Exception strings for bytearray say "bytes"  09/05/09
CLOSED http://bugs.python.org/issue6847created  hagen   
  
   patch   

curses module build failure (ncurses 5.7)09/06/09
CLOSED http://bugs.python.org/issue6848created  marketdickinson 
  
   

Tutorial changes 09/06/09
   http://bugs.python.org/issue6849created  michael.foord   
  
   easy

decimal.py: format_dict  09/06/09
CLOSED http://bugs.python.org/issue6850created  skrah   
  
   

urllib.urlopen crashes in a thread on Snow Leopard   09/07/09
   http://bugs.python.org/issue6851created  jweber  
  
   

Unicode IO not working in cgi applet 09/07/09
CLOSED http://bugs.python.org/issue6852created  loveminix   
  
   

system proxy not used for https (on windows) 09/07/09
   http://bugs.python.org/issue6853created  ldeller 
  
   patch   

UnicodeDecodeError when retrieving binary data from cgi.FieldSto 09/07/09
   http://bugs.python.org/issue6854created  loveminix   
  
   

ihooks support for relative imports  09/07/09
   http://bugs.python.org/issue6855created  nascheme
  
 

Re: [Python-Dev] M.L.S.(Multiple Language Support) in Core-Compiler

2009-09-11 Thread Brett Cannon
On Fri, Sep 11, 2009 at 00:51, R.  wrote:
> How to adapt the existing M.L.S. from Compilermessages to
> Core-Compiler-Words.
>
> Where to begin, for implemantation of this feature?

Um, what existing multi-language support? CPython doesn't have any such thing.

-Brett
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] M.L.S.(Multiple Language Support) in Core-Compiler

2009-09-11 Thread Antoine Pitrou
Brett Cannon  python.org> writes:
> 
> On Fri, Sep 11, 2009 at 00:51, R.  web.de> wrote:
> > How to adapt the existing M.L.S. from Compilermessages to
> > Core-Compiler-Words.
> >
> > Where to begin, for implemantation of this feature?
> 
> Um, what existing multi-language support? CPython doesn't have any such thing.

Well, I suppose the message was aimed at another mailing-list...



___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com