Re: Wanted: a python24 package for Python 2.3

2007-03-21 Thread Jonathan Fine
Gerald Klix wrote: > Hi, > You can't import subproces from future, only syntactic and semantic > changes that will become standard feature in future python version can > be activated that way. > > You can copy the subprocess module from python 2.4 somewhere where it > will be found from python

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread Aahz
In article <[EMAIL PROTECTED]>, Alex Martelli <[EMAIL PROTECTED]> wrote: > >For subprocess specifically, see > . I don't think anybody's >ever packaged up ALL the new stuff as you require. Oh, good that web page came back. (When we were down to the wir

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread Jonathan Fine
Alex Martelli wrote: > Jonathan Fine <[EMAIL PROTECTED]> wrote: >... > >>In other words, I'm asking for a python24 package that >>contains all (or most) of the modules that are new to >>Python 2.4. > > > For subprocess specifically, see > . Tha

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread Gerald Klix
Hi, You can't import subproces from future, only syntactic and semantic changes that will become standard feature in future python version can be activated that way. You can copy the subprocess module from python 2.4 somewhere where it will be found from python 2.3. At least subporcess is impor

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread Jonathan Fine
[EMAIL PROTECTED] wrote: > On Mar 20, 10:33 am, Jonathan Fine <[EMAIL PROTECTED]> wrote: >>My problem is that I want a Python 2.4 module on >>a server that is running Python 2.3. I definitely >>want to use the 2.4 module, and I don't want to >>require the server to move to Python 2.4. > You migh

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread Alex Martelli
Jonathan Fine <[EMAIL PROTECTED]> wrote: ... > In other words, I'm asking for a python24 package that > contains all (or most) of the modules that are new to > Python 2.4. For subprocess specifically, see . I don't think anybody's ever packaged up A

Re: Wanted: a python24 package for Python 2.3

2007-03-20 Thread kyosohma
On Mar 20, 10:33 am, Jonathan Fine <[EMAIL PROTECTED]> wrote: > Hello > > My problem is that I want a Python 2.4 module on > a server that is running Python 2.3. I definitely > want to use the 2.4 module, and I don't want to > require the server to move to Python 2.4. > > More exactly, I am using

Wanted: a python24 package for Python 2.3

2007-03-20 Thread Jonathan Fine
Hello My problem is that I want a Python 2.4 module on a server that is running Python 2.3. I definitely want to use the 2.4 module, and I don't want to require the server to move to Python 2.4. More exactly, I am using subprocess, which is new in Python 2.4. What I am writing is something like