summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/AutoCompleteWindow.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 79576-79578 via svnmerge fromEzio Melotti2010-08-021-6/+6
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79576 | florent.xicluna | 2010-04-02 10:24:52 +0300 (Fri, 02 Apr 2010) | 2 lines #7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports. ........ r79577 | florent.xicluna | 2010-04-02 11:15:26 +0300 (Fri, 02 Apr 2010) | 2 lines #7092: Drop the cmp argument. ........ r79578 | florent.xicluna | 2010-04-02 11:30:21 +0300 (Fri, 02 Apr 2010) | 2 lines #7092: silence some py3k warnings ........
* Merged revisions 79558 via svnmerge fromEzio Melotti2010-08-021-4/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79558 | florent.xicluna | 2010-04-01 21:17:09 +0300 (Thu, 01 Apr 2010) | 2 lines #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote. ........
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-1/+1
|
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-161-1/+1
|
* Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.Kurt B. Kaiser2008-04-271-7/+12
|
* Assume that the user knows when he wants to end the line; don't insertKurt B. Kaiser2007-10-041-14/+3
| | | | something he didn't select or complete.
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2007-02-081-17/+25
| | | | | | mouse and cursor selection in ACWindow implemented; double Tab inserts current selection and closes ACW (similar to double-click and Return); scroll wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
* [ 1621265 ] Auto-completion list placementKurt B. Kaiser2007-02-071-6/+15
| | | | | Move AC window below input line unless not enough space, then put it above. Patch: Tal Einat
* 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112.Kurt B. Kaiser2006-12-151-1/+4
| | | | | | | 2. Duplicate some old entries from Python's NEWS to IDLE's NEWS.txt M AutoCompleteWindow.py M NEWS.txt
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-181-0/+393
A idlelib/AutoCompleteWindow.py A idlelib/AutoComplete.py A idlelib/HyperParser.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/configDialog.py M idlelib/EditorWindow.py M idlelib/PyParse.py M idlelib/CallTips.py M idlelib/CallTipWindow.py M idlelib/run.py M idlelib/config-extensions.def A idlelib/MultiCall.py