Kuno Meyer added the comment:
2) Yes, it should be `> /dev/null` instead of `> /dev/nul` (my bad). The output
remains the same.
--
___
Python tracker
<http://bugs.python.org/i
Kuno Meyer added the comment:
http://stackoverflow.com/questions/3648711/detect-nul-file-descriptor-isatty-is-bogus,
although a bit convoluted, might also help. It mentions GetConsoleMode() for
stdin and GetConsoleScreenBufferInfo() for stdout
New submission from Kuno Meyer:
[Python 3.5.2 on Windows]
>py -c "import sys; print(sys.stdout.isatty(), file=sys.stderr)" > NUL
True
NUL is the Windows equivalent of /dev/nul, so the result should probably be
False.
Under Cygwin, the result is as expected:
$ python3 -c &q
New submission from Kuno Woudt :
In the WWW-Authenticate header Catalyst::Authentication::Credential::HTTP sends
the following value for qop:
qop="auth,auth-int"
This is identical to the example given in section 3.5 of the RFC
(http://tools.ietf.org/html/rfc2617#section-3.5 ), s
Kuno added the comment:
Ah! Good to know that it has been fixed already. Thank you.
--
___
Python tracker
<http://bugs.python.org/issue5659>
___
___
Python-bug
New submission from Kuno :
When attempting to use the encoding="" parameter of logging.FileHandler
I always get a UnicodeError. This looks like a bug to me (otherwise I
am seriously misunderstanding what the parameter is supposed to do). The
attached file contains the code to repr