summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-02-13 23:39:17 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-02-13 23:39:17 (GMT)
commit8089cd642fa8b29e852506218b6355be064c2bd5 (patch)
tree5e1898e258a592415b0b6dd22ebbc527641c514c /Misc
parent0fe6325acf013c945dc003eae2ab5addc2186645 (diff)
downloadcpython-8089cd642fa8b29e852506218b6355be064c2bd5.zip
cpython-8089cd642fa8b29e852506218b6355be064c2bd5.tar.gz
cpython-8089cd642fa8b29e852506218b6355be064c2bd5.tar.bz2
Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser.
Patch by Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cae74df..27b58e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser. Patch by
+ Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson.
+
- Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode.
- Issue #23344: marshal.dumps() is now 20-25% faster on average.