summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-03 02:54:58 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-03 02:54:58 (GMT)
commit5dbbf1abba89ef1766759fbc9d5a5af02db49505 (patch)
treecac2c9b19d50a3cd7593a9a28359b3a952bda79e /Misc
parentacc03195b0609490a4e5f8b1d9eb504c22c6526e (diff)
downloadcpython-5dbbf1abba89ef1766759fbc9d5a5af02db49505.zip
cpython-5dbbf1abba89ef1766759fbc9d5a5af02db49505.tar.gz
cpython-5dbbf1abba89ef1766759fbc9d5a5af02db49505.tar.bz2
Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3a9cd6f..01b42f4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1155,6 +1155,7 @@ Florian Preinstorfer
Amrit Prem
Paul Prescod
Donovan Preston
+Eric Price
Paul Price
Iuliia Proskurnia
Dorian Pula
diff --git a/Misc/NEWS b/Misc/NEWS
index 9682b40..6d43666 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -99,6 +99,9 @@ Core and Builtins
Library
-------
+- Issue #23735: Handle terminal resizing with Readline 6.3+ by installing our
+ own SIGWINCH handler. Patch by Eric Price.
+
- Issue #26586: In http.server, respond with "413 Request header fields too
large" if there are too many header fields to parse, rather than killing
the connection and raising an unhandled exception. Patch by Xiang Zhang.