diff options
author | Flavian Hautbois <flavianh@sicara.com> | 2019-08-25 19:06:45 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-08-25 19:06:45 (GMT) |
commit | da27d9b9dc44913ffee8f28d9638985eaaa03755 (patch) | |
tree | 58520d3227798af6bdd60f90dae750c6ac58e933 /Misc | |
parent | 5dbe0f59b7a4f39c7c606b48056bc29e406ebf78 (diff) | |
download | cpython-da27d9b9dc44913ffee8f28d9638985eaaa03755.zip cpython-da27d9b9dc44913ffee8f28d9638985eaaa03755.tar.gz cpython-da27d9b9dc44913ffee8f28d9638985eaaa03755.tar.bz2 |
bpo-29553: Fix ArgumentParser.format_usage() for mutually exclusive groups (GH-14976)
Co-authored-by: Andrew Nester <andrew.nester.dev@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-07-27-10-14-45.bpo-29553.TVeIDe.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-07-27-10-14-45.bpo-29553.TVeIDe.rst b/Misc/NEWS.d/next/Library/2019-07-27-10-14-45.bpo-29553.TVeIDe.rst new file mode 100644 index 0000000..3472db7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-07-27-10-14-45.bpo-29553.TVeIDe.rst @@ -0,0 +1,2 @@ +Fixed :meth:`argparse.ArgumentParser.format_usage` for mutually exclusive groups. +Patch by Andrew Nester. |