This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients bethard, eli.bendersky, ezio.melotti, serhiy.storchaka, wolma
Date 2013-09-04.13:26:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378301207.52.0.672185270845.issue18920@psf.upfronthosting.co.za>
In-reply-to
Content
Only on 3.4.
Python prints the version on stdout since 3.4 -- before it used stderr:
3.3$ ./python -V 2> /dev/null
3.3$ ./python -V > /dev/null
Python 3.3.2+

3.4$ ./python -V 2> /dev/null
Python 3.4.0a1+
3.4$ ./python -V > /dev/null

This might also explain why argparse uses stderr (other modules/scripts in the stdlib might do the same too).
History
Date User Action Args
2013-09-04 13:26:47ezio.melottisetrecipients: + ezio.melotti, bethard, eli.bendersky, serhiy.storchaka, wolma
2013-09-04 13:26:47ezio.melottisetmessageid: <1378301207.52.0.672185270845.issue18920@psf.upfronthosting.co.za>
2013-09-04 13:26:47ezio.melottilinkissue18920 messages
2013-09-04 13:26:47ezio.melotticreate