summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-15 01:26:25 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-15 01:26:25 (GMT)
commitf0dbf7a6abc821c77e912deae81e3a27cf334c54 (patch)
treebf28e30216f084dc637caa140960a9b14e7aef60 /Misc/NEWS
parent4dd27f0adcee901bff19c536d8442d666440a415 (diff)
downloadcpython-f0dbf7a6abc821c77e912deae81e3a27cf334c54.zip
cpython-f0dbf7a6abc821c77e912deae81e3a27cf334c54.tar.gz
cpython-f0dbf7a6abc821c77e912deae81e3a27cf334c54.tar.bz2
Issue #26870: Add readline.set_auto_history(), originally by Tyler Crompton
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bede515..80996bd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -277,6 +277,10 @@ Core and Builtins
Library
-------
+- Issue #26870: Added readline.set_auto_history(), which can stop entries
+ being automatically added to the history list. Based on patch by Tyler
+ Crompton.
+
- Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIP
file, as well as for extracting data. Patch by Thomas Kluyver.