summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_readline.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-11-26 21:02:33 (GMT)
committerNed Deily <nad@acm.org>2014-11-26 21:02:33 (GMT)
commit8007cbc4d52da93237c9476da473840b047a9a14 (patch)
tree32610168d117b4079a2b8f67934b39289f90c2ac /Lib/test/test_readline.py
parent3663b586644e6d2af1d682f0703ba0d1a80d53d7 (diff)
downloadcpython-8007cbc4d52da93237c9476da473840b047a9a14.zip
cpython-8007cbc4d52da93237c9476da473840b047a9a14.tar.gz
cpython-8007cbc4d52da93237c9476da473840b047a9a14.tar.bz2
Issue 22940: fixes to editline support
Diffstat (limited to 'Lib/test/test_readline.py')
-rw-r--r--Lib/test/test_readline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py
index 90dcdf2..23d6194 100644
--- a/Lib/test/test_readline.py
+++ b/Lib/test/test_readline.py
@@ -43,7 +43,7 @@ class TestHistoryManipulation (unittest.TestCase):
self.assertEqual(readline.get_current_history_length(), 1)
- @unittest.skipUnless(hasattr(readline, "append_history"),
+ @unittest.skipUnless(hasattr(readline, "append_history_file"),
"append_history not available")
def test_write_read_append(self):
hfile = tempfile.NamedTemporaryFile(delete=False)