summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-09 21:14:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-09 21:14:27 (GMT)
commitf451112413b9ea8940c8c3a902cddf701c62d17f (patch)
tree385735b78ad865fde1d615d27041c356acefbf00 /Misc
parent32c4915b239f435fd6c063b7f507b289a7a55f75 (diff)
downloadcpython-f451112413b9ea8940c8c3a902cddf701c62d17f.zip
cpython-f451112413b9ea8940c8c3a902cddf701c62d17f.tar.gz
cpython-f451112413b9ea8940c8c3a902cddf701c62d17f.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/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index bb469ae..cea4bed 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -430,6 +430,7 @@ Marius Gedminas
Thomas Gellekum
Gabriel Genellina
Christos Georgiou
+Elazar Gershuni
Ben Gertzfield
Nadim Ghaznavi
Dinu Gherman
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fcae77..220289d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,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.