Grant Edwards wrote: > On 2005-10-21, Ernesto <[EMAIL PROTECTED]> wrote: > > > Thanks. Can anyone provide an example of using *subprocess* to run > > helloWorld.C through the python interpreter. > > No. You can't run a .C file
Unless you have a C interpreter installed. e.g.:
import os
os.system("eic helloWorld.C")
(Requires eic to be in your PATH.)
I doubt it's what the OP was looking for, though.
http://eic.sourceforge.net/
--
http://mail.python.org/mailman/listinfo/python-list
