On 1/30/2013 1:11 PM, MRAB wrote:
On 2013-01-30 17:15, noydb wrote:
I am looking for some guidance on using subprocess to execute an EXE
with arguments and an output. The below code works in that it returns
a 0 exit code, but no output file is created. I have tried a few
different versions of
oh DUH! that was it, just missing the -F. Thank-you!!
--
http://mail.python.org/mailman/listinfo/python-list
On 2013-01-30 17:15, noydb wrote:
I am looking for some guidance on using subprocess to execute an EXE with
arguments and an output. The below code works in that it returns a 0 exit
code, but no output file is created. I have tried a few different versions of
this code (used Popen instead, s
On Wed, Jan 30, 2013 at 9:15 AM, noydb wrote:
> I am looking for some guidance on using subprocess to execute an EXE with
> arguments and an output. The below code works in that it returns a 0 exit
> code, but no output file is created. I have tried a few different versions
> of this code (us
To add on, I need to eventually write a script that takes input, feeds it into
this exe, and takes the output file to perform more 'tools'/manipulations on
it. Is call or Popen called for, why? Or maybe some other module???
--
http://mail.python.org/mailman/listinfo/python-list
Nicolas Fleury <[EMAIL PROTECTED]> writes:
> Hi,
> I want to use the subprocess module (or any standard Python module) to
> run a process:
> - which stdout and stderr can each be redirected to any file-like object
> (no fileno function).
> - can be cancelled with a threading.Event.
> My p
I am not sure how safe it is, but on Linux I have just copied
subprocess.py
in my 2.3 installation and it worked in all the cases I tried.
Michele Simionato
--
http://mail.python.org/mailman/listinfo/python-list
Dennis Lee Bieber wrote:
> Pardon the question, but which version of Python /has/ a
> "subprocess" module? Is it new with 2.4?
yes.
for earlier versions, you can get a pure-Python Unix implementation
here:
http://www.lysator.liu.se/~astrand/popen5/
and a windows installer here:
http:/