Message 196910 - Python tracker
Message196910
| 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:47 | ezio.melotti | set | recipients: + ezio.melotti, bethard, eli.bendersky, serhiy.storchaka, wolma |
| 2013-09-04 13:26:47 | ezio.melotti | set | messageid: <1378301207.52.0.672185270845.issue18920@psf.upfronthosting.co.za> |
| 2013-09-04 13:26:47 | ezio.melotti | link | issue18920 messages |
| 2013-09-04 13:26:47 | ezio.melotti | create | |