Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 7 | -7/+2 |
| | |||||
* | Configured selection highlighting colors were ignored; updating highlighting | Kurt B. Kaiser | 2008-02-15 | 3 | -36/+30 |
| | | | | | in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat. | ||||
* | ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat. | Kurt B. Kaiser | 2008-02-15 | 2 | -6/+9 |
| | |||||
* | Bring NEWS.txt up to date from check-in msgs. | Kurt B. Kaiser | 2008-02-14 | 1 | -0/+7 |
| | |||||
* | what??! Correct r60225. | Kurt B. Kaiser | 2008-02-12 | 1 | -1/+1 |
| | |||||
* | There was an error on exit if no sys.exitfunc was defined. Issue 1647. | Kurt B. Kaiser | 2008-01-23 | 2 | -1/+6 |
| | |||||
* | Could not open files in .idlerc directory if latter was hidden on Windows. | Kurt B. Kaiser | 2008-01-23 | 2 | -2/+10 |
| | | | | Issue 1743, Issue 1862. | ||||
* | Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat. | Kurt B. Kaiser | 2007-12-28 | 2 | -20/+24 |
| | |||||
* | Fixed #1649: IDLE error: dictionary changed size during iteration | Christian Heimes | 2007-12-18 | 1 | -1/+1 |
| | |||||
* | IDLE_tabbedpages.071101.patch Tal Einat | Kurt B. Kaiser | 2007-12-11 | 2 | -148/+47 |
| | | | | Cosmetic changes, one bug. Remove tabpage.py, replaced by tabbedpages.py | ||||
* | format_paragraph_event wasn't returning 'break' | Kurt B. Kaiser | 2007-12-11 | 1 | -0/+1 |
| | |||||
* | check in Tal Einat's update to tabpage.py | Kurt B. Kaiser | 2007-10-30 | 3 | -9/+489 |
| | | | | | | | | Patch 1612746 M configDialog.py M NEWS.txt AM tabbedpages.py | ||||
* | Add confirmation dialog before printing. Patch 1717170 Tal Einat. | Kurt B. Kaiser | 2007-10-28 | 2 | -1/+13 |
| | |||||
* | 1. Add comments to provide top-level documentation. | Kurt B. Kaiser | 2007-10-26 | 1 | -30/+68 |
| | | | | | 2. Refactor to use more descriptive names. 3. Enhance tests in main(). | ||||
* | Correct an ancient bug in an unused path by removing that path: register() is | Kurt B. Kaiser | 2007-10-25 | 1 | -5/+1 |
| | | | | now idempotent. | ||||
* | show paste if > 80 columns. Patch 1659326 Tal Einat. | Kurt B. Kaiser | 2007-10-10 | 2 | -0/+3 |
| | |||||
* | Allow cursor color change w/o restart. Patch 1725576 Tal Einat. | Kurt B. Kaiser | 2007-10-10 | 2 | -0/+5 |
| | |||||
* | Allow interrupt only when executing user code in subprocess | Kurt B. Kaiser | 2007-10-09 | 2 | -3/+13 |
| | | | | Patch 1225 Tal Einat modified from IDLE-Spoon. | ||||
* | configDialog cleanup. Patch 1730217 Tal Einat. | Kurt B. Kaiser | 2007-10-04 | 2 | -40/+44 |
| | |||||
* | textView cleanup. Patch 1718043 Tal Einat. | Kurt B. Kaiser | 2007-10-04 | 4 | -50/+54 |
| | | | | | | | M idlelib/EditorWindow.py M idlelib/aboutDialog.py M idlelib/textView.py M idlelib/NEWS.txt | ||||
* | Clean up EditorWindow close. | Kurt B. Kaiser | 2007-10-04 | 3 | -14/+19 |
| | |||||
* | Remove unused theme that was causing a fault in p3k. | Kurt B. Kaiser | 2007-10-04 | 1 | -1/+0 |
| | |||||
* | Assume that the user knows when he wants to end the line; don't insert | Kurt B. Kaiser | 2007-10-04 | 2 | -15/+4 |
| | | | | something he didn't select or complete. | ||||
* | Patch 1693258: Fix for duplicate "preferences" menu-OS X | Ronald Oussoren | 2007-07-09 | 1 | -18/+31 |
| | |||||
* | 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 |
| |