Replying to skyworld because I could not find the original message
from MRAB.
skyworld wrote:
> On Oct 27, 11:02 am, MRAB wrote:
> > On 2012-10-27 03:28, skyworld wrote:> Hi,
> >
> > > I'm new to python and I'm trying to porting some scripts from v0.96 to
> > > v2.0.1. A piece of code is like thi
On Oct 27, 11:02 am, MRAB wrote:
> On 2012-10-27 03:28, skyworld wrote:> Hi,
>
> > I'm new to python and I'm trying to porting some scripts from v0.96 to
> > v2.0.1. A piece of code is like this:
>
> > cmd_h = os.popen4(env['SYSCMDLINE'])[1]
>
> > the system indicates the popen4 is deprecated and
On 27/10/2012 03:28, skyworld wrote:
Hi,
I'm new to python and I'm trying to porting some scripts from v0.96 to
v2.0.1. A piece of code is like this:
What software are you talking about here, it's certainly not Python
versions as the most up to date are 2.7.3 and 3.3.0?
cmd_h = os.popen4(
On 2012-10-27 03:28, skyworld wrote:
Hi,
I'm new to python and I'm trying to porting some scripts from v0.96 to
v2.0.1. A piece of code is like this:
cmd_h = os.popen4(env['SYSCMDLINE'])[1]
the system indicates the popen4 is deprecated and suggest to use
subprocess. Can anybody tell me how to