summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_readline.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
| | | | Patch by Christie Wilson.
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+2
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* Issue 22940: fixes to editline supportNed Deily2014-11-261-1/+1
|
* merge 3.4Benjamin Peterson2014-11-261-3/+3
|\
| * use skipUnlessBenjamin Peterson2014-11-261-3/+3
| |
* | only support append_history if readline has itBenjamin Peterson2014-11-261-0/+2
| |
* | add readline.append_history_file (closes #22940)Benjamin Peterson2014-11-261-1/+39
|/ | | | patch by "bru"
* Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+4
|
* Issue #19884: readline: Disable the meta modifier key if stdout is not aVictor Stinner2014-07-241-5/+18
| | | | | | terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters.
* Revert 961a15aff2a6, this is already checked in another way.Georg Brandl2012-08-111-3/+1
|
* Closes #15620: check for presence of readline.clear_history(), which is ↵Georg Brandl2012-08-111-1/+3
| | | | apparently missing on some readline versions, before calling it in the test.
* #11496: skip history test if clear_history is not available.R David Murray2011-03-141-0/+4
| | | | Patch by Natalia B. Bidart.
* Merged revisions 75711 via svnmerge fromMark Dickinson2009-10-261-2/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75711 | mark.dickinson | 2009-10-26 11:59:30 +0000 (Mon, 26 Oct 2009) | 1 line Skip readline tests if readline module is not available. ........
* Merged revisions 74970 via svnmerge fromRonald Oussoren2009-09-201-0/+42
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74970 | ronald.oussoren | 2009-09-20 16:18:15 +0200 (Sun, 20 Sep 2009) | 7 lines Issue 6877: this patch makes it possible to link the readline extension to the libedit emulation of the readline API on OSX 10.5 or later. This also adds a minimal testsuite for readline to check that the history manipuation functions have the same interface with both C libraries. ........