I am trying to compile Python source on a RedHat 7.0 linux box but when
I do the make I get the following:
make[1]: Leaving directory
`/develop/ActivePython-2.0.0-203/src/Core/Objects'
cd Python ; make OPT="-g -O2 -Wall -Wstrict-prototypes" VERSION="2.0" \
prefix="/usr/local" exec_prefix="/usr/
popen does indeed wait for the process to terminate. This is the only
sensible thing as you are waiting for the programs output.
Use os.system() is you don't want to wait for termination nor read the
program's output.
Mark.
> -Original Message-
> From: Nahuel Greco [mailto:[EMAIL PROTE
I have downloaded the 203 build of activepython2.0.
But when I tried to import Tkinter, I get a error
message saying that "the dynamic library Tk83.dll is
not found in the path". When I tried to use the
python package manager to install Tkinter, I was
informed that Tkinter is not on the activest
Hi, im doing the following thing in Windows 98 / Activestate Python 2.0:
import win32pipe
cmd = "c:\\zebedee\\zebedee.exe -d 127.0.0.1"
pipes = win32pipe.popen3(cmd,'t')
#Now.. if i do:
pipes[0].close()
pipes[1].close()
pipes[2].close()