"Ernesto" wrote:
[color=blue]
> Thanks. Can anyone provide an example of using *subprocess* to run
> helloWorld.C through the python interpreter.[/color]
compile helloWorld, and run:
import subprocess
subprocess.call ("helloWorld ")
(any special reason why you couldn't figure this out yourself, given the
example provided by gsteff ?)
On 2005-10-21, Ernesto <erniedude@gmai l.com> wrote:
[color=blue]
> Thanks. Can anyone provide an example of using *subprocess* to run
> helloWorld.C through the python interpreter.[/color]
No. You can't run a .C file. You can run a .exe file (I'm
guessing you're using Windows based on the question).
--
Grant Edwards grante Yow! Am I accompanied by
at a PARENT or GUARDIAN?
visi.com
On 2005-10-21, Micah Elliott <mde@micah.elli ott.name> wrote:[color=blue]
> On Oct 21, Grant Edwards wrote:[color=green]
>> I'm guessing you're using Windows based on the question.[/color]
>
> +1 QOTW.[/color]
Yow! That's two in one day, what do I win?
--
Grant Edwards grante Yow! I'll take ROAST BEEF
at if you're out of LAMB!!
visi.com
Grant Edwards wrote:[color=blue]
> On 2005-10-21, Micah Elliott <mde@micah.elli ott.name> wrote:
>[color=green]
>>On Oct 21, Grant Edwards wrote:
>>[color=darkred]
>>>I'm guessing you're using Windows based on the question.[/color]
>>
>>+1 QOTW.[/color]
>
>
> Yow! That's two in one day, what do I win?
>[/color]
If my experience is anything to go by it just means there won't be a
weekly URL this week :-)
Grant Edwards wrote:[color=blue]
> On 2005-10-21, Ernesto <erniedude@gmai l.com> wrote:
>[color=green]
> > Thanks. Can anyone provide an example of using *subprocess* to run
> > helloWorld.C through the python interpreter.[/color]
>
> No. You can't run a .C file[/color]
Download EiC for free. This is a resurrected open source C Interpreter project. The new release includes enhancements that allows the C Interpreter to talk to logic simulation so that it can be used to drive simulation.
Fredrik Lundh wrote:[color=blue]
> "Ernesto" wrote:
>[color=green]
> > Thanks. Can anyone provide an example of using *subprocess* to run
> > helloWorld.C through the python interpreter.[/color]
>
> compile helloWorld, and run:
>
> import subprocess
> subprocess.call ("helloWorld ")
>
> (any special reason why you couldn't figure this out yourself, given the
> example provided by gsteff ?)
>
> </F>[/color]
There is a reason (though it is not special). I'm new to Python. I
looked at all the documentation on subprocess, as well as popen. I
couldn't figure it out, so I thought an example (which I thank you for
providing) would help me along (which it did). Is there a special
reason for you having a problem with me asking for help? I thought
that's what this group is for.
Ernesto wrote:
[color=blue][color=green][color=darkred]
>> > Thanks. Can anyone provide an example of using *subprocess* to run
>> > helloWorld.C through the python interpreter.[/color]
>>
>> compile helloWorld, and run:
>>
>> import subprocess
>> subprocess.call ("helloWorld ")
>>
>> (any special reason why you couldn't figure this out yourself, given the
>> example provided by gsteff ?)[/color]
>
> There is a reason (though it is not special). I'm new to Python. I
> looked at all the documentation on subprocess, as well as popen. I
> couldn't figure it out, so I thought an example (which I thank you for
> providing) would help me along (which it did).[/color]
as I noted in the part of my reply that you didn't read, the person you replied to
(gsteff) also provided an example. Since his post didn't contain any other text, I
did find it a bit strange that you missed that part of his message, but still managed
to reply to it.
Ernesto wrote:[color=blue]
> So i generated the .exe file "myFile.exe "
>
> This is a Windows - text based application. Right now, when I run:
>
> import subprocess
> subprocess.call ("myFile")
>
> the application starts in its own console window. Is there a way for
> it to run inside the python interface?[/color]
Google found the following (after I read the docs for subprocess and
learned about the "startupinf o" flag, and searched for "subprocess
startupinfo"). Does this help?
Peter Hansen wrote:[color=blue]
>
> Google found the following (after I read the docs for subprocess and
> learned about the "startupinf o" flag, and searched for "subprocess
> startupinfo"). Does this help?
>
> http://aspn.activestate.com/ASPN/Coo.../Recipe/409002
>
> -Peter[/color]
Comment