summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* 2.5.1 finalv2.5.1Anthony Baxter2007-04-182-1/+6
|
* preparing for 2.5.1c1Anthony Baxter2007-04-052-1/+6
|
* Patch #1672481: fix bug in idlelib.MultiCall.Georg Brandl2007-03-061-0/+2
| | | | (backport from rev. 54156)
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-111-1/+1
|
* Bug #813342: Start the IDLE subprocess with -Qnew if the parentGeorg Brandl2006-10-121-0/+2
| | | | | is started with that option. (backport from rev. 52295)
* Preparing for 2.5 final.v2.5Anthony Baxter2006-09-182-1/+6
| | | | | | (damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h)
* preparing for 2.5c2Anthony Baxter2006-09-112-1/+6
|
* File menu hotkeys: there were three 'p' assignments. Reassign theKurt B. Kaiser2006-08-163-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. Kaiser2006-08-161-7/+10
|
* Patch #1540892: site.py Quitter() class attempts to close sys.stdinKurt B. Kaiser2006-08-163-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.5c1Anthony Baxter2006-08-162-2/+2
|
* The 'with' statement is now a Code Context block openerKurt B. Kaiser2006-08-162-1/+3
|
* Retrieval of previous shell command was not always preserving indentationKurt B. Kaiser2006-08-102-9/+18
| | | | since 1.2a1) Patch 1528468 Tal Einat.
* Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)Kurt B. Kaiser2006-08-102-0/+5
|
* ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).Kurt B. Kaiser2006-08-092-5/+7
|
* Typo fixAndrew M. Kuchling2006-08-091-1/+1
|
* As a slight enhancement to the previous checkin, improve theKurt B. Kaiser2006-08-091-2/+5
| | | | internal error reporting by moving message to IDLE console.
* 1. When used w/o subprocess, all exceptions were preceeded by an errorKurt B. Kaiser2006-08-093-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 machinationsAnthony Baxter2006-08-022-3/+3
|
* Fix bug #1517990: IDLE keybindings on OSXRonald Oussoren2006-07-252-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öwis2006-07-251-1/+5
|
* Whitespace normalization.Tim Peters2006-07-241-4/+4
|
* - EditorWindow.test() was failing. Bug 1417598Kurt B. Kaiser2006-07-243-3/+6
| | | | | | M EditorWindow.py M ScriptBinding.py M NEWS.txt
* EditorWindow failed when used stand-alone if sys.ps1 not set.Kurt B. Kaiser2006-07-243-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 menuRonald Oussoren2006-07-231-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 solvesRonald Oussoren2006-07-231-0/+3
| | | | part of bug #1517990.
* Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren GuthrieKurt B. Kaiser2006-07-232-1/+3
|
* Avoid occasional failure to detect closing paren properly.Kurt B. Kaiser2006-07-203-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. Kaiser2006-07-182-1/+12
|
* Patch 1479219 - Tal EinatKurt B. Kaiser2006-07-171-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 Brandl2006-07-171-2/+1
|
* preparing for 2.5b2Anthony Baxter2006-07-102-1/+6
|
* Workaround for bug #1512124Ronald Oussoren2006-06-251-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 Baxter2006-06-192-1/+6
|
* Add missing svn:eol-style property to text files.Tim Peters2006-06-111-36/+36
|
* Whitespace normalization.Tim Peters2006-06-114-40/+40
|
* This patch improves the L&F of IDLE on OSX. The changes are conditionalized onRonald Oussoren2006-06-118-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 Brandl2006-06-093-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 codeRonald Oussoren2006-05-261-0/+1
| | | | tried to update one item in a tuple.
* 2.5a2Anthony Baxter2006-04-272-1/+6
|
* preparation for 2.5a1Anthony Baxter2006-04-032-4/+4
|
* Source file f.flush() after writing; trying to avoid lossage if userKurt B. Kaiser2006-03-192-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öwis2005-11-272-6/+34
|
* Fix main() callKurt B. Kaiser2005-11-231-3/+3
| | | | Patch 1315161 sebastien blanchet
* 1. Made advanced keybinding dialog functional.Kurt B. Kaiser2005-11-222-13/+27
| | | | 2. Allow binding of movement keys
* Fix typo and update comment obsoleted by 'syntax' patchKurt B. Kaiser2005-11-221-5/+2
|
* Default two second delay on attribute pop-up, less noisy interface.Kurt B. Kaiser2005-11-221-1/+1
| | | | (Opens immediately if TAB is typed after '.')
* Following 'syntax' patch, accelerator keys in menus weren't beingKurt B. Kaiser2005-11-221-22/+21
| | | | updated after a keyset change. Also, formatted ApplyKeyBindings()
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-1813-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. Kaiser2005-11-153-5/+20
| | | | IDLEfork Patch 681992, Noam Raphael