summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-09 21:18:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-09 21:18:41 (GMT)
commit123e6d5b4b17e182cfa49b0913bfc0b77ecb2585 (patch)
treeb172af053a1970f2530d1771f81b97b1430d4d5d /Misc
parentba44860c118f375c81db1f82ac4714992a37a22e (diff)
parentf451112413b9ea8940c8c3a902cddf701c62d17f (diff)
downloadcpython-123e6d5b4b17e182cfa49b0913bfc0b77ecb2585.zip
cpython-123e6d5b4b17e182cfa49b0913bfc0b77ecb2585.tar.gz
cpython-123e6d5b4b17e182cfa49b0913bfc0b77ecb2585.tar.bz2
Issue #13107: argparse and optparse no longer raises an exception when output
a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e58df2a..e63d6a0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,10 @@ Core and Builtins
Library
-------
+- Issue #13107: argparse and optparse no longer raises an exception when output
+ a help on environment with too small COLUMNS. Based on patch by
+ Elazar Gershuni.
+
- Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly
asked for.