summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_rlcompleter.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25663: Make rlcompleter avoid duplicate global namesMartin Panter2015-11-231-0/+21
|
* 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.
* Merged revisions 85766-85767 via svnmerge fromGeorg Brandl2010-11-261-2/+2
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85766 | georg.brandl | 2010-10-21 09:40:03 +0200 (Do, 21 Okt 2010) | 1 line #10159: sort completion matches before comparing to dir() result. ........ r85767 | georg.brandl | 2010-10-21 14:49:28 +0200 (Do, 21 Okt 2010) | 1 line #9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C file reindenting, and docs whitespace fixing. ........
* Merged revisions 83719 via svnmerge fromAntoine Pitrou2010-08-041-0/+73
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83719 | antoine.pitrou | 2010-08-04 17:43:16 +0200 (mer., 04 août 2010) | 4 lines Issue #9496: Provide a test suite for the rlcompleter module. Patch by Michele Orrù. ........