Message198079
I found a little difference in isatty implementaions:
Windows
Determines whether a file descriptor is associated with a character device [1]
Unix
Test whether a file descriptor refers to a terminal [2]
So, we having a same behavior for pipes, but different for I/O redirection with pseudo-character devices:
$ ./python -c "import os;print(os.isatty(0))" < /dev/null
False
e:\PCbuild>python_d.exe -c "import os;print(os.isatty(0))" < NUL
True
Other pseudo devices works simular:
e:\PCbuild>python_d.exe -c "import os;print(os.isatty(0))" < CON
True
I having a snippet to fix that, should I open a new issue for patch?
[1] http://msdn.microsoft.com/en-us/library/f4s0ddew.aspx
[2] http://man7.org/linux/man-pages/man3/isatty.3.html |
|
Date |
User |
Action |
Args |
2013-09-19 14:47:28 | dmi.baranov | set | recipients:
+ dmi.baranov, georg.brandl, orsenthil, pitrou, vstinner, techtonik, ezio.melotti, asvetlov, docs@python, python-dev |
2013-09-19 14:47:28 | dmi.baranov | set | messageid: <1379602048.23.0.214793011945.issue18553@psf.upfronthosting.co.za> |
2013-09-19 14:47:28 | dmi.baranov | link | issue18553 messages |
2013-09-19 14:47:27 | dmi.baranov | create | |
|