Merge with 3.2.

This commit is contained in:
Georg Brandl 2012-08-11 10:59:45 +02:00
commit 68fad6fb37
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ class TestHistoryManipulation (unittest.TestCase):
"The history update test cannot be run because the "
"clear_history method is not available.")
def testHistoryUpdates(self):
readline.clear_history()
# Some GNU versions of readline do not support clear_history
if hasattr('readline', 'clear_history'):
readline.clear_history()
readline.add_history("first line")
readline.add_history("second line")