| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Patch #1672481: fix bug in idlelib.MultiCall. | Georg Brandl | 2007-03-06 | 1 | -0/+2 |
| | | |||||
| * | Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented; | Kurt B. Kaiser | 2007-02-08 | 3 | -21/+103 |
| | | | | | | | 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. | ||||
| * | Handle AttributeError during calltip lookup | Kurt B. Kaiser | 2007-02-07 | 1 | -1/+1 |
| | | |||||
| * | [ 1621265 ] Auto-completion list placement | Kurt B. Kaiser | 2007-02-07 | 2 | -6/+18 |
| | | | | | | Move AC window below input line unless not enough space, then put it above. Patch: Tal Einat | ||||
| * | narrow exception per [ 1540849 ] except too broad | Kurt B. Kaiser | 2007-02-06 | 1 | -1/+1 |
| | | |||||
| * | Updated patch (CodeContext.061217.patch) to | Kurt B. Kaiser | 2007-02-06 | 1 | -53/+19 |
| | | | | | | [ 1362975 ] CodeContext - Improved text indentation Tal Einat 16Dec06 | ||||
| * | Clean up ModifiedInterpreter.runcode() structure | Kurt B. Kaiser | 2007-02-06 | 1 | -27/+29 |
| | | |||||
| * | 1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :) | Kurt B. Kaiser | 2007-02-05 | 2 | -36/+48 |
| | | | | | | | Suggested solution by Christos Georgiou, Bug 791968. 2. Clean up tests, were not failing when they should have been. 4. Remove some camelcase and an unneeded try/except block. | ||||
| * | Add 'raw' support to configHandler. Patch 1650174 Tal Einat. | Kurt B. Kaiser | 2007-02-05 | 2 | -12/+13 |
| | | |||||
| * | Whitespace normalization. | Tim Peters | 2007-01-30 | 1 | -2/+2 |
| | | |||||
| * | - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). | Matthias Klose | 2007-01-11 | 1 | -1/+1 |
| | | |||||
| * | 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112. | Kurt B. Kaiser | 2006-12-15 | 2 | -1/+24 |
| | | | | | | | | 2. Duplicate some old entries from Python's NEWS to IDLE's NEWS.txt M AutoCompleteWindow.py M NEWS.txt | ||||
| * | Move IDLE news into NEWS.txt. | Martin v. Löwis | 2006-12-03 | 1 | -0/+3 |
| | | |||||
| * | Patch #1362975: Rework CodeContext indentation algorithm to | Martin v. Löwis | 2006-11-22 | 2 | -18/+61 |
| | | | | | | avoid hard-coding pixel widths. Also make the text's scrollbar a child of the text frame, not the top widget. | ||||
| * | Bug #813342: Start the IDLE subprocess with -Qnew if the parent | Georg Brandl | 2006-10-12 | 1 | -0/+2 |
| | | | | | is started with that option. | ||||
| * | Add comment explaining that error msgs may be due to user code when | Kurt B. Kaiser | 2006-10-01 | 1 | -0/+2 |
| | | | | | running w/o subprocess. | ||||
| * | Some syntax errors were being caught by tokenize during the tabnanny | Kurt B. Kaiser | 2006-10-01 | 2 | -6/+8 |
| | | | | | | check, resulting in obscure error messages. Do the syntax check first. Bug 1562716, 1562719 | ||||
| * | Updating IDLE's version number to match Python's (as per python-dev | Anthony Baxter | 2006-08-18 | 2 | -1/+10 |
| | | | | | discussion). | ||||
| * | File menu hotkeys: there were three 'p' assignments. Reassign the | Kurt B. Kaiser | 2006-08-16 | 3 | -3/+7 |
| | | | | | | | | | | 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the Shell menu hotkey from 's' to 'l'. M Bindings.py M PyShell.py M NEWS.txt | ||||
| * | Get quit() and exit() to work cleanly when not using subprocess. | Kurt B. Kaiser | 2006-08-16 | 1 | -7/+10 |
| | | |||||
| * | Patch #1540892: site.py Quitter() class attempts to close sys.stdin | Kurt B. Kaiser | 2006-08-16 | 3 | -11/+15 |
| | | | | | | | | | | | before raising SystemExit, allowing IDLE to honor quit() and exit(). M Lib/site.py M Lib/idlelib/PyShell.py M Lib/idlelib/CREDITS.txt M Lib/idlelib/NEWS.txt M Misc/NEWS | ||||
| * | preparing for 2.5c1 | Anthony Baxter | 2006-08-16 | 2 | -2/+2 |
| | | |||||
| * | The 'with' statement is now a Code Context block opener | Kurt B. Kaiser | 2006-08-16 | 2 | -1/+3 |
| | | |||||
| * | Retrieval of previous shell command was not always preserving indentation | Kurt B. Kaiser | 2006-08-10 | 2 | -9/+18 |
| | | | | | since 1.2a1) Patch 1528468 Tal Einat. | ||||
| * | Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1) | Kurt B. Kaiser | 2006-08-10 | 2 | -0/+5 |
| | | |||||
| * | ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1). | Kurt B. Kaiser | 2006-08-09 | 2 | -5/+7 |
| | | |||||
| * | Typo fix | Andrew M. Kuchling | 2006-08-09 | 1 | -1/+1 |
| | | |||||
| * | As a slight enhancement to the previous checkin, improve the | Kurt B. Kaiser | 2006-08-09 | 1 | -2/+5 |
| | | | | | internal error reporting by moving message to IDLE console. | ||||
| * | 1. When used w/o subprocess, all exceptions were preceeded by an error | Kurt B. Kaiser | 2006-08-09 | 3 | -4/+13 |
| | | | | | | | | | | message claiming they were IDLE internal errors (since 1.2a1). 2. Add Ronald Oussoren to CREDITS M NEWS.txt M PyShell.py M CREDITS.txt | ||||
| * | pre-release machinations | Anthony Baxter | 2006-08-02 | 2 | -3/+3 |
| | | |||||
| * | Fix bug #1517990: IDLE keybindings on OSX | Ronald Oussoren | 2006-07-25 | 2 | -1/+54 |
| | | | | | | | | This adds a new key definition for OSX, which is slightly different from the classic mac definition. Also add NEWS item for a couple of bugfixes I added recently. | ||||
| * | Bug #1525817: Don't truncate short lines in IDLE's tool tips. | Martin v. Löwis | 2006-07-25 | 1 | -1/+5 |
| | | |||||
| * | Whitespace normalization. | Tim Peters | 2006-07-24 | 1 | -4/+4 |
| | | |||||
| * | - EditorWindow.test() was failing. Bug 1417598 | Kurt B. Kaiser | 2006-07-24 | 3 | -3/+6 |
| | | | | | | | M EditorWindow.py M ScriptBinding.py M NEWS.txt | ||||
| * | EditorWindow failed when used stand-alone if sys.ps1 not set. | Kurt B. Kaiser | 2006-07-24 | 3 | -4/+7 |
| | | | | | | | | | Bug 1010370 Dave Florek M EditorWindow.py M PyShell.py M NEWS.txt | ||||
| * | Fix for bug #1517996: Class and Path browsers show Tk menu | Ronald Oussoren | 2006-07-23 | 1 | -0/+76 |
| | | | | | | This patch replaces the menubar that is used by AquaTk for windows without a menubar of their own by one that is more appropriate for IDLE. | ||||
| * | Without this patch CMD-W won't close EditorWindows on MacOS X. This solves | Ronald Oussoren | 2006-07-23 | 1 | -0/+3 |
| | | | | | part of bug #1517990. | ||||
| * | Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie | Kurt B. Kaiser | 2006-07-23 | 2 | -1/+3 |
| | | |||||
| * | Avoid occasional failure to detect closing paren properly. | Kurt B. Kaiser | 2006-07-20 | 3 | -10/+15 |
| | | | | | | | | | Patch 1407280 Tal Einat M ParenMatch.py M NEWS.txt M CREDITS.txt | ||||
| * | Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168. | Kurt B. Kaiser | 2006-07-18 | 2 | -1/+12 |
| | | |||||
| * | Patch 1479219 - Tal Einat | Kurt B. Kaiser | 2006-07-17 | 1 | -12/+18 |
| | | | | | | | | | | 1. 'as' highlighted as builtin in comment string on import line 2. Comments such as "#False identity" which start with a keyword immediately after the '#' character aren't colored as comments. 3. u or U beginning unicode string not correctly highlighted Closes bug 1325071 | ||||
| * | Remove usage of sets module (patch #1500609). | Georg Brandl | 2006-07-17 | 1 | -2/+1 |
| | | |||||
| * | preparing for 2.5b2 | Anthony Baxter | 2006-07-10 | 2 | -1/+6 |
| | | |||||
| * | Workaround for bug #1512124 | Ronald Oussoren | 2006-06-25 | 1 | -1/+8 |
| | | | | | | | Without this patch IDLE will get unresponsive when you open the debugger window on OSX. This is both using the system Tcl/Tk on Tiger as the latest universal download from tk-components.sf.net. | ||||
| * | Preparing for 2.5b1. | Anthony Baxter | 2006-06-19 | 2 | -1/+6 |
| | | |||||
| * | Add missing svn:eol-style property to text files. | Tim Peters | 2006-06-11 | 1 | -36/+36 |
| | | |||||
| * | Whitespace normalization. | Tim Peters | 2006-06-11 | 4 | -40/+40 |
| | | |||||
| * | This patch improves the L&F of IDLE on OSX. The changes are conditionalized on | Ronald Oussoren | 2006-06-11 | 8 | -20/+130 |
| | | | | | | being in an IDLE.app bundle on darwin. This does a slight reorganisation of the menus and adds support for file-open events. | ||||
| * | Make use of new str.startswith/endswith semantics. | Georg Brandl | 2006-06-09 | 3 | -5/+4 |
| | | | | | Occurences in email and compiler were ignored due to backwards compat requirements. | ||||
| * | Without this patch OSX users couldn't add new help sources because the code | Ronald Oussoren | 2006-05-26 | 1 | -0/+1 |
| | | | | | tried to update one item in a tuple. | ||||
