Hi, > I'd like to run a python function in a new process, like python 2.6's > multiprocessing does. I wanted to use ProcessProtocol, but it seems to > only work for executing executables and interacting with them using > stdin/stdout/other fds. Is there a way of running a python piece of code > in a new process?
Well, the only way to run Python code is to run the Python interpreter in a process and feed it the python code you want to run (using the -c option). Cheers, Reza -- Reza Lotun mobile: +44 (0)7521 310 763 email: [email protected] work: [email protected] twitter: @rlotun _______________________________________________ Twisted-Python mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
