[issue1415] py3k: pythonw.exe fails to run

2007-11-09 Thread Christian Heimes
Christian Heimes added the comment: Python 2.6 (svn trunk) doesn't check the file handlers when it creates sys.stdin, stdout and stderr. write() operations to stdout and stderr don't fail although the data is written into nowhere land. stdin.read() fails with IOError: [Errno 9] Bad file descripto

[issue1415] py3k: pythonw.exe fails to run

2007-11-09 Thread Christian Heimes
Christian Heimes added the comment: Update: pythonw fails because the standard streams can't be initialized. fileno(stdin), fileno(stdout) and fileno(stderr) are returning -2. __ Tracker <[EMAIL PROTECTED]> _

[issue1415] py3k: pythonw.exe fails to run

2007-11-09 Thread Christian Heimes
New submission from Christian Heimes: pythonw.exe fails to run with a runtime error. python.exe works as expected. While the bug itself isn't serious it should either be fixed or pythonw.exe be omitted from the next alpha release. -- components: Windows keywords: py3k messages: 57342 nos