summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2012-09-12 01:06:29 (GMT)
committerBarry Warsaw <barry@python.org>2012-09-12 01:06:29 (GMT)
commit03fcfbef0aa9a0990d5cd3995defa8cd089f704c (patch)
tree056171792f9a71cc200050f7c8e90b9f68332d96 /Misc/NEWS
parenta8a5b397c1a30568be1309ed265b696da84eeca0 (diff)
downloadcpython-03fcfbef0aa9a0990d5cd3995defa8cd089f704c.zip
cpython-03fcfbef0aa9a0990d5cd3995defa8cd089f704c.tar.gz
cpython-03fcfbef0aa9a0990d5cd3995defa8cd089f704c.tar.bz2
- Issue #15906: Fix a regression in argparse caused by the preceding change,
when action='append', type='str' and default=[].
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 817a3526..f3d6fc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -119,6 +119,9 @@ Library
especially problematic for the FileType type, as a default file would always
be opened, even if a file argument was specified on the command line.
+- Issue #15906: Fix a regression in argparse caused by the preceding change,
+ when action='append', type='str' and default=[].
+
- Issue #13370: Ensure that ctypes works on Mac OS X when Python is
compiled using the clang compiler