summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-03 03:19:27 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-03 03:19:27 (GMT)
commita3506005b31b8e30402bd38a762e7e1d2945a9e8 (patch)
treec2cb05b32a6871873c79dd69a2a0844f9b9bab60 /Misc
parent519f91215bd353c745946e5d892fd1f089dbcb84 (diff)
parent5dbbf1abba89ef1766759fbc9d5a5af02db49505 (diff)
downloadcpython-a3506005b31b8e30402bd38a762e7e1d2945a9e8.zip
cpython-a3506005b31b8e30402bd38a762e7e1d2945a9e8.tar.gz
cpython-a3506005b31b8e30402bd38a762e7e1d2945a9e8.tar.bz2
Issue #23735: Merge Readline resize handling from 3.5
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 52eae69..20e76f5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1160,6 +1160,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 f66014a..8cd2339 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,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 #25951: Change SSLSocket.sendall() to return None, as explicitly
documented for plain socket objects. Patch by Aviv Palivoda.