Issue #26870: Add readline.set_auto_history(), originally by Tyler Crompton
diff --git a/Misc/ACKS b/Misc/ACKS
index ebc3fc6..65d7040 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -307,6 +307,7 @@
Christopher A. Craig
Jeremy Craven
Laura Creighton
+Tyler Crompton
Simon Cross
Felipe Cruz
Drew Csillag
diff --git a/Misc/NEWS b/Misc/NEWS
index bede515..80996bd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -277,6 +277,10 @@
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.