summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_rlcompleter.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.5Yury Selivanov2016-02-041-0/+1
|\
| * Issue #25660: Fix a unittest and rlcompleter when readline isn't availableYury Selivanov2016-02-041-0/+2
| |
* | Issue #25754: Allow test_rlcompleter to be run multiple timesMartin Panter2015-11-281-6/+7
| |
* | Issue #25663: Update rlcompleter test for new 3.6 behaviourMartin Panter2015-11-241-2/+3
| |
* | Issue #25663: Merge rlcompleter fix from 3.5Martin Panter2015-11-241-0/+21
|\ \ | |/
| * Issue #25663: Merge rlcompleter fix from 3.4 into 3.5Martin Panter2015-11-241-0/+21
| |\
| | * Issue #25663: Make rlcompleter avoid duplicate global namesMartin Panter2015-11-231-0/+21
| | |
* | | Issue #25590: Complete attribute names even if they are not yet createdMartin Panter2015-11-131-0/+8
| | |
* | | Issue #25590: Merge rlcompleter getattr change from 3.5Martin Panter2015-11-131-0/+13
|\ \ \ | |/ /
| * | Issue #25590: Merge rlcompleter change from 3.4 into 3.5Martin Panter2015-11-131-0/+13
| |\ \ | | |/
| | * Issue #25590: Make rlcompleter only call getattr() once per attributeMartin Panter2015-11-131-0/+13
| | | | | | | | | | | | | | | | | | Previously it was called another time via hasattr(), and both calls were made once for dir(f) and again for dir(f.__class__). This includes a backport of changing from a list to a set from revision 4dbb315fe667.
* | | Issue #25011: rlcomplete now omits private and special attribute names unlessSerhiy Storchaka2015-09-271-0/+15
| | | | | | | | | | | | the prefix starts with underscores.
* | | Issue #25209: rlcomplete now can add a space or a colon after completed keyword.Serhiy Storchaka2015-09-271-4/+9
|/ /
* | Issue #23441: rcompleter now prints a tab character instead of displayingBerker Peksag2015-07-271-0/+8
|\ \ | |/ | | | | | | | | possible completions for an empty word. Initial patch by Martin Sekera.
| * Issue #23441: rcompleter now prints a tab character instead of displayingBerker Peksag2015-07-271-4/+8
| | | | | | | | | | | | possible completions for an empty word. Initial patch by Martin Sekera.
* | Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-6/+1
|/ | | | | | | 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.
* #10159: sort completion matches before comparing to dir() result.Georg Brandl2010-10-211-2/+2
|
* Issue #9496: Provide a test suite for the rlcompleter module. Patch byAntoine Pitrou2010-08-041-0/+73
Michele OrrĂ¹.