[issue35533] argparse standard error usage for exit / error

2019-02-07 Thread paul j3
paul j3 added the comment: The proposed PR does not address this issue. It just adds comments to the method code, which aren't really needed. The method is short and obvious. We don't need, at this time, to get into questions of whether comments in argparse.py conform to one of the PEPs.

[issue35533] argparse standard error usage for exit / error

2019-02-03 Thread paul j3
Change by paul j3 : -- nosy: +paul.j3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue35533] argparse standard error usage for exit / error

2019-01-19 Thread Vinay Badhan
Vinay Badhan added the comment: Add documentation for exit() function -- keywords: +patch nosy: +vinayb21 pull_requests: +11377 stage: -> patch review ___ Python tracker ___

[issue35533] argparse standard error usage for exit / error

2018-12-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +bethard versions: +Python 3.8 __ Python tracker __ ___ Python-bugs-list mailing

[issue35533] argparse standard error usage for exit / error

2018-12-19 Thread Philip Rowlands
New submission from Philip Rowlands : Because error() mentions standard error and exit() does not, I assumed exit() did not use stderr, but it does. Please mention standard error in the description of exit(). Relevant code at: https://github.com/python/cpython/blob/3.7/Lib/argparse.py#L2482