Re: stdin and py2exe

2005-09-14 Thread Thomas Heller
"Mike Tammerman" <[EMAIL PROTECTED]> writes: > Yes, it throws exceptions if I build the exe of the subprogram.py. > > So, is it possible to pipe some data to another py2exe'd application > without a console. I did this just some days ago. It required a little bit of experimenting. This code exe

Re: stdin and py2exe

2005-09-14 Thread Mike Tammerman
Yes, it throws exceptions if I build the exe of the subprogram.py. So, is it possible to pipe some data to another py2exe'd application without a console. Mike -- http://mail.python.org/mailman/listinfo/python-list

Re: stdin and py2exe

2005-09-14 Thread Thomas Heller
"Mike Tammerman" <[EMAIL PROTECTED]> writes: > Hi, > > I want create a subprocess using Popen and pipe some input to it. > Although everything works perfectly while executing python in, it > doesn't work if I try with executables made by py2exe. > > I think, stdin is invalidated if the program bec

stdin and py2exe

2005-09-14 Thread Mike Tammerman
Hi, I want create a subprocess using Popen and pipe some input to it. Although everything works perfectly while executing python in, it doesn't work if I try with executables made by py2exe. I think, stdin is invalidated if the program becomes an executable. Because I get a "Bad file descriptor"