Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - 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. | |||||
* | 2.5a2 | Anthony Baxter | 2006-04-27 | 2 | -1/+6 | |
| | ||||||
* | preparation for 2.5a1 | Anthony Baxter | 2006-04-03 | 2 | -4/+4 | |
| | ||||||
* | Source file f.flush() after writing; trying to avoid lossage if user | Kurt B. Kaiser | 2006-03-19 | 2 | -1/+5 | |
| | | | | kills GUI. Report from B. Sherwood. Backport to 2.3.4. | |||||
* | Patch #1162825: Support non-ASCII characters in IDLE window titles. | Martin v. Löwis | 2005-11-27 | 2 | -6/+34 | |
| | ||||||
* | Fix main() call | Kurt B. Kaiser | 2005-11-23 | 1 | -3/+3 | |
| | | | | Patch 1315161 sebastien blanchet | |||||
* | 1. Made advanced keybinding dialog functional. | Kurt B. Kaiser | 2005-11-22 | 2 | -13/+27 | |
| | | | | 2. Allow binding of movement keys | |||||
* | Fix typo and update comment obsoleted by 'syntax' patch | Kurt B. Kaiser | 2005-11-22 | 1 | -5/+2 | |
| | ||||||
* | Default two second delay on attribute pop-up, less noisy interface. | Kurt B. Kaiser | 2005-11-22 | 1 | -1/+1 | |
| | | | | (Opens immediately if TAB is typed after '.') | |||||
* | Following 'syntax' patch, accelerator keys in menus weren't being | Kurt B. Kaiser | 2005-11-22 | 1 | -22/+21 | |
| | | | | updated after a keyset change. Also, formatted ApplyKeyBindings() | |||||
* | Merge IDLE-syntax-branch r39668:41449 into trunk | Kurt B. Kaiser | 2005-11-18 | 13 | -201/+1592 | |
| | | | | | | | | | | | | | | | | 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 | |||||
* | Better indentation after first line of string continuation. | Kurt B. Kaiser | 2005-11-15 | 3 | -5/+20 | |
| | | | | IDLEfork Patch 681992, Noam Raphael | |||||
* | Incorporate Tal Einat's comment on Patch 936169: Fixes alignment problem. | Kurt B. Kaiser | 2005-10-03 | 2 | -4/+13 | |
| | ||||||
* | Tweak CodeContext.py docstrings, comments, and names. | Kurt B. Kaiser | 2005-10-03 | 1 | -51/+57 | |
| | ||||||
* | Increased performance in CodeContext extension Patch 936169 Noam Raphael | Kurt B. Kaiser | 2005-10-02 | 2 | -31/+49 | |
| | ||||||
* | Remove unused import | Neal Norwitz | 2005-09-01 | 1 | -1/+0 | |
| | ||||||
* | Revert previous code elimination, 'filename' is needed. | Kurt B. Kaiser | 2005-08-23 | 1 | -2/+7 | |
| | ||||||
* | 1. Mac line endings were incorrect when pasting code from some browsers | Kurt B. Kaiser | 2005-08-23 | 2 | -7/+6 | |
| | | | | | | | when using X11 and the Fink distribution. Python Bug 1263656. 2. Eliminate duplicated code in ScriptBinding.run_module_event() Modified Files: NEWS.txt ScriptBinding.py | |||||
* | Fix all wrong instances of "it's". | Georg Brandl | 2005-07-22 | 1 | -1/+1 | |
| | ||||||
* | [ 1243081 ] repair typos | Georg Brandl | 2005-07-22 | 1 | -1/+1 | |
| | ||||||
* | Remove dead code | Kurt B. Kaiser | 2005-06-21 | 2 | -20/+8 | |
| | | | | | M IdleHistory.py M PyShell.py | |||||
* | <Enter> when cursor is on a previous command retrieves that command. Instead | Kurt B. Kaiser | 2005-06-19 | 2 | -7/+32 | |
| | | | | | | | | | of replacing the input line, the previous command is now appended to the input line. Indentation is preserved, and undo is enabled. Patch 1196917 Jeff Shute Modified Files: NEWS.txt PyShell.py | |||||
* | 1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with | Kurt B. Kaiser | 2005-06-12 | 3 | -9/+12 | |
| | | | | | | | | | | the Untabify command. 2. Corrected "tab/space" Error Dialog to show correct menu for Untabify. Patch 1196980 Jeff Shute M EditorWindow.py M NEWS.txt M ScriptBinding.py | |||||
* | 1. Patch 1196895 Jeff Shute: | Kurt B. Kaiser | 2005-06-12 | 5 | -4/+13 | |
| | | | | | | | | | | | | | | New files are colorized by default, and colorizing is removed when saving as non-Python files. Patch 1196895 Jeff Shute Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524 2. Update help.txt for left/right word delete M CREDITS.txt M ColorDelegator.py M EditorWindow.py M NEWS.txt M help.txt | |||||
* | Improve subprocess link error notification | Kurt B. Kaiser | 2005-05-10 | 3 | -3/+9 | |
| | | | | | | M NEWS.txt M PyShell.py M rpc.py | |||||
* | Use Queue's blocking feature instead of sleeping in the main | Kurt B. Kaiser | 2005-05-05 | 2 | -2/+4 | |
| | | | | loop. Patch # 1190163 Michiel de Hoon | |||||
* | Add config-main.def option to make the 'history' feature non-cyclic. | Kurt B. Kaiser | 2005-02-03 | 3 | -7/+23 | |
| | | | | | | | | Default remains cyclic. Python Patch 914546 Noam Raphael. M IdleHistory.py M NEWS.txt M config-main.def | |||||
* | Removed ability to configure tabs indent from Options dialog. This 'feature' | Kurt B. Kaiser | 2005-01-31 | 3 | -90/+41 | |
| | | | | | | | | | | | | | | | | | has never worked and no one has complained. It is still possible to set a default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on tabs for the current EditorWindow via the Format menu) but IDLE will encourage indentation via spaces. Enable setting the indentation width using the Options dialog. Bug # 783877 Remove some commented out old code from configDialog.py (related to old methods for invoking the HelpBrowser). M EditorWindow.py M NEWS.txt M configHandler.py | |||||
* | Add keybindings for del-word-left and del-word-right. | Kurt B. Kaiser | 2005-01-28 | 4 | -2/+27 | |
| | | | | | | | M EditorWindow.py M NEWS.txt M config-keys.def M configHandler.py | |||||
* | 1. Polish tabbing code. | Kurt B. Kaiser | 2005-01-19 | 4 | -62/+71 | |
| | | | | | | | | | | | | | | | | | 2. Restore use of set_indentation_params(), was dead code since Autoindent.py was merged into EditorWindow.py. 3. Make usetabs, indentwidth, tabwidth, context_use_ps1 instance vars and set in EditorWindow.__init__() 4. In PyShell.__init__() set usetabs, indentwidth and context_use_ps1 explicitly (config() is eliminated). 5. Add Tabnanny check when Module is Run/F5, not just when Checked. 6. Discourage using an indent width other than 8 when using tabs to indent Python code. M EditorWindow.py M NEWS.txt M PyShell.py M ScriptBinding.py | |||||
* | If an extension can't be loaded, print warning and skip it instead of | Kurt B. Kaiser | 2005-01-18 | 2 | -3/+9 | |
| | | | | erroring out. | |||||
* | Whitespace normalization. | Tim Peters | 2005-01-13 | 1 | -1/+1 | |
| | ||||||
* | Improve error handling when .idlerc can't be created. | Kurt B. Kaiser | 2005-01-11 | 1 | -14/+16 | |
| | ||||||
* | Improve error message if rpc'l localcall() fails with unexpected | Kurt B. Kaiser | 2004-12-23 | 1 | -1/+3 | |
| | | | | exception. |