[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-17 Thread Antony Lee
Change by Antony Lee : -- nosy: -Antony.Lee ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-17 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Max for pushing this across the finish line! ✨  ✨ Closing this one. Further improvement of BooleanOptionalAction will be discussed in BPO-44587. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-17 Thread miss-islington
miss-islington added the comment: New changeset 6f6648e436d02bce0e49ba82f4377c0d2f586f0f by Miss Islington (bot) in branch '3.10': bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672) https://github.com/python/cpython/commit/6f6648e436d02bce0e49ba82f4377c0d2f586f0f

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 27fd31311097ab7326f084b5e0e5f388f8dc6b13 by Łukasz Langa in branch '3.9': [3.9] bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672) (GH-27788) https://github.com/python/cpython/commit/27fd31311097ab7326f084b5e0e5f388f8dc6b13

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-16 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26257 pull_request: https://github.com/python/cpython/pull/27788 ___ Python tracker ___

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-16 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +26256 pull_request: https://github.com/python/cpython/pull/27787 ___ Python tracker

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-16 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1512bc21d60f098a9e9f37b44a2f6a9b49a3fd4f by Maximilian Hils in branch 'main': bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672) https://github.com/python/cpython/commit/1512bc21d60f098a9e9f37b44a2f6a9b49a3fd4f --

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2021-08-09 Thread Maximilian Hils
Change by Maximilian Hils : -- nosy: +mhils nosy_count: 5.0 -> 6.0 pull_requests: +26160 pull_request: https://github.com/python/cpython/pull/27672 ___ Python tracker ___

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-09 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-02 Thread Micky Yun Chan
Micky Yun Chan added the comment: Hi I created a new pull request on Github -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-02 Thread Micky Yun Chan
Change by Micky Yun Chan : -- keywords: +patch pull_requests: +16928 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17447 ___ Python tracker ___

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-02 Thread Micky Yun Chan
Micky Yun Chan added the comment: Hi, if it's possible can I take this issue? -- nosy: +Micky Yun Chan ___ Python tracker ___ ___

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-02 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +paul.j3, rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38956] argparse.BooleanOptionalAction should not add the default value to the help string by default

2019-12-02 Thread Antony Lee
New submission from Antony Lee : https://bugs.python.org/issue8538 recently added to Py3.9 a much welcome addition to argparse, namely the capability to generate --foo/--no-foo flag pairs. A small issue with the implementation is that it *always* appends the default value to the help string