[issue18922] Output versions of scripts to stdout

2013-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 587bdb940524 by Eli Bendersky in branch 'default': Update whatsnew/3.4 wrt. --version going to stdout. #18338, #18920, #18922 http://hg.python.org/cpython/rev/587bdb940524 -- ___ Python tracker

[issue18922] Output versions of scripts to stdout

2013-09-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Nicola and Berker. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue18922] Output versions of scripts to stdout

2013-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset e81699a6390c by Serhiy Storchaka in branch 'default': Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write http://hg.python.org/cpython/rev/e81699a6390c -- nosy: +python-dev ___ Pytho

[issue18922] Output versions of scripts to stdout

2013-09-05 Thread Nicola Palumbo
Changes by Nicola Palumbo : Removed file: http://bugs.python.org/file31590/issue18922.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18922] Output versions of scripts to stdout

2013-09-05 Thread Nicola Palumbo
Changes by Nicola Palumbo : Added file: http://bugs.python.org/file31613/issue18922.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18922] Output versions of scripts to stdout

2013-09-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18922] Output versions of scripts to stdout

2013-09-04 Thread Nicola Palumbo
Nicola Palumbo added the comment: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write their version strings to stdout, and not to sderr. Applying the patch the stdout can be redirect /python.exe Lib/smtpd.py --version >> /dev/null Without the patch: /python.exe Lib/smtpd.py --version >

[issue18922] Output versions of scripts to stdout

2013-09-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18922] Output versions of scripts to stdout

2013-09-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write their version strings to stderr. It should be changed to stdout for consistency with most common practice. See also issue18338 and issue18920. -- components: Demos and Tools, Library (Lib) key