summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFlavian Hautbois <flavianh@sicara.com>2019-08-25 19:06:45 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2019-08-25 19:06:45 (GMT)
commitda27d9b9dc44913ffee8f28d9638985eaaa03755 (patch)
tree58520d3227798af6bdd60f90dae750c6ac58e933 /Misc
parent5dbe0f59b7a4f39c7c606b48056bc29e406ebf78 (diff)
downloadcpython-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.rst2
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.