Amaury Forgeot d'Arc added the comment:

I made some checks with the vc2005 (msvcr80) runtime library:
- fd==-2 corresponds to the _NO_CONSOLE_FILENO constant.
A comment in the CRT code says:
    /*
     * For stdin, stdout & stderr, we use _NO_CONSOLE_FILENO (a value
     * different from _INVALID_HANDLE_VALUE to distinguish between
     * a failure in opening a file & a program run without a console.
     */

- in this case, stderr is a buffered FILE*, but the flush() method
always fails. This makes not difference for python2.5, because it never
looks at the return value of fprintf (which is not very consistent, BTW).

Since pythonw (2.5) silently discards any output to stderr, we could
achieve the same by opening the nul file...

--- c:/temp/t   2007-11-12 13:54:34.105463200 +0100
+++ c:/afa/python/py3k/Modules/_fileio.c        2007-11-12 13:52:42.576675100 
+0100
@@ -149,6 +149,15 @@
 
        if (PyArg_ParseTupleAndKeywords(args, kwds, "i|si:fileio",
                                        kwlist, &fd, &mode, &closefd)) {
+#ifdef MS_WINDOWS
+               /* Windows sets the descriptor to _NO_CONSOLE_FILENO when */
+               /* the program is run without a console */
+               if (fd == -2)
+               {
+                       fd = open("nul", "r+");
+               }
+               else
+#endif
                if (fd < 0) {
                        PyErr_SetString(PyExc_ValueError,
                                        "Negative filedescriptor");

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1415>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to