[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2022-03-10 Thread Stanley
Change by Stanley : -- nosy: +slateny nosy_count: 13.0 -> 14.0 pull_requests: +29908 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/31810 ___ Python tracker

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2020-02-19 Thread hai shi
hai shi added the comment: It exists in master, so it still need a patch. -- nosy: +rhettinger, shihai1991 versions: +Python 3.9 -Python 2.7, Python 3.2 ___ Python tracker ___

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2020-02-17 Thread Ananthakrishnan
Ananthakrishnan added the comment: Is this issue still needed? Can I add a pull request for this. -- nosy: +Ananthakrishnan ___ Python tracker ___

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2019-10-31 Thread Jackson Riley
Jackson Riley added the comment: Hi all, I'm a newcomer and wanted to try to make this change, is it still wanted/needed? -- nosy: +jacksonriley ___ Python tracker ___

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2017-01-09 Thread paul j3
Changes by paul j3 : -- nosy: +paul.j3 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2017-01-07 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue9182] document “--” as a way to distinguish option w/ narg='+' from positional argument in argparse

2012-07-23 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: Ok, here's what I think needs to go into the documentation here: (1) Add a separate section to the argparse docs about '--'. Give examples like the ones in this issue, and show how '--' can solve them (2) Cross-reference the section