[issue28532] Show sys.version when -V option is supplied twice.

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +876 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5a29ab5a4785 by INADA Naoki in branch '3.6': Issue #28532: Add what's new entry for python -VV option https://hg.python.org/cpython/rev/5a29ab5a4785 New changeset 3f9f13077ca8 by INADA Naoki in branch 'default': Issue #28532: Add what's new entry fo

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-24 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-23 Thread Martin Panter
Martin Panter added the comment: Looks good to me -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-23 Thread INADA Naoki
INADA Naoki added the comment: Elvis agreed to add "Other Improvements" section. (http://bugs.python.org/issue28635#msg281486) Here is new patch. -- Added file: http://bugs.python.org/file45608/vervose-version-doc2.patch ___ Python tracker

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread Martin Panter
Martin Panter added the comment: The text looks okay. I’m not sure about putting it in the “Porting to Python 3.6” section, but there doesn’t seem to be a more appropriate existing heading. Perhaps we need a new heading, say “Other Improvement”, near “Optimizations” and “Build and C API Change

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread INADA Naoki
INADA Naoki added the comment: Thanks for review. Since doc update is allowed after final beta, I committed verbose-version3.patch for now. Here is patch for doc. -- Added file: http://bugs.python.org/file45585/vervose-version-doc.patch ___ Python t

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset fc6bb69cec05 by INADA Naoki in branch '3.6': Issue #28532: Show sys.version when -V option is supplied twice https://hg.python.org/cpython/rev/fc6bb69cec05 New changeset 02aa667bd02d by INADA Naoki in branch 'default': Issue #28532: Show sys.version

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread STINNER Victor
STINNER Victor added the comment: verbose-version3.patch LGTM and seems useful to me. -- nosy: +haypo ___ Python tracker ___ ___ Pytho

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread Martin Panter
Martin Panter added the comment: Ned indicated he was open to the idea: . Maybe just double check; there’s still a few hours left! I’m not sure, but maybe there should be “.. versionchanged:: 3.6” in the RST documentation, and an e

[issue28532] Show sys.version when -V option is supplied twice.

2016-11-21 Thread INADA Naoki
INADA Naoki added the comment: I noticed today is code freeze for final beta. Is this too late for 3.6.0? -- priority: normal -> high ___ Python tracker ___ _

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-30 Thread INADA Naoki
INADA Naoki added the comment: Oh, it seems I hurried too much. Thanks to pointing it out. -- Added file: http://bugs.python.org/file45276/verbose-version3.patch ___ Python tracker _

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-30 Thread Martin Panter
Martin Panter added the comment: Sorry, I should have said: the other two files (Misc/python.man and Modules/main.c) also need an extra “the”, like you changed in Doc/using/cmdline.rst. Other than that, it looks okay to me. But I guess you could add a quick test case in Lib/test/test_cmd_line

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-30 Thread INADA Naoki
Changes by INADA Naoki : Added file: http://bugs.python.org/file45272/verbose-version2.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-29 Thread Martin Panter
Martin Panter added the comment: I left some review comments. Also (as a native English speaker), I think it is okay to drop the third line about “multiple times”. You already say it may be given twice in the line above. -- nosy: +martin.panter ___

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-29 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: yep, but in this case, just add -VV will add more details about the current revision. About -VVV or -VV, yes, it's similar because the same C code version >= 2, Py_GetVersion() -- ___ Python tracker

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-29 Thread INADA Naoki
INADA Naoki added the comment: Since I'm not good English writer, I copied & modified from -v option. -VVV is same to -VV, similar to -vvv is same to -vv. -v : verbose (trace import statements); also PYTHONVERBOSE=x can be supplied multiple times to increase verbosity -- _

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-29 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: " -V : print the Python version number and exit (also --version)\n\ + when given twice, print more information about build\n\ + can be supplied multiple times to show more information\n\" Why do you indicate "multiple times" because there ar

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-29 Thread INADA Naoki
Changes by INADA Naoki : -- keywords: +easy stage: -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue28532] Show sys.version when -V option is supplied twice.

2016-10-25 Thread INADA Naoki
New submission from INADA Naoki: As discussed on python-dev, this patch adds -VV option to python cmdline. $ ./python -V Python 3.6.0b2+ $ ./python -VV Python 3.6.0b2+ (3.6:84a3c5003510+, Oct 26 2016, 02:47:38) [GCC 6.2.0 20161005] The patch includes doc and man update. Please see, especially