summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* Prepare for 2.4.6.v2.4.6Martin v. Löwis2008-12-192-3/+3
|
* Prepare for 2.4.6c1.Martin v. Löwis2008-12-132-3/+8
|
* Prepare for 2.4.5v2.4.5Martin v. Löwis2008-03-112-1/+6
|
* Prepare for 2.4.5c1v2.4.5c1Martin v. Löwis2008-03-022-1/+6
|
* Revert the following revisions, as they don't fix securityMartin v. Löwis2008-03-021-1/+1
| | | | | | | problems: 52448, 52468, 52472, 52475, 52646, 52797, 52802, 52863, 52999, 53001, 53101, 53371, 53373, 53383, 53384, 53736, 53812, 53921, 55578, 55580, 55581, 55772, 55775, 56557, 57093, 57094, 58630, 60114
* - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092).Matthias Klose2007-01-111-1/+1
|
* preparing for 2.4.4 finalAnthony Baxter2006-10-172-1/+6
|
* what month is it again? I get confused...v2.4.4c1Anthony Baxter2006-10-101-1/+1
|
* preparing for 2.4.4c1Anthony Baxter2006-10-102-1/+6
|
* Port of universal binary support for Mac OSX from python 2.5. This takes awayRonald Oussoren2006-10-081-0/+7
| | | | | | | | the need for the out-of-tree universal binary support that was used to build the 2.4.3 installer. Missing here relative to that tree are some changes to IDLE, IMHO those patches aren't appropriate for the 2.4 branch and users are better of using 2.5's IDLE.
* Code tried to modify a tuple, convert to list before doing that (backport fromRonald Oussoren2006-05-261-0/+1
| | | | same patch on trunk)
* preparing for 2.4.3 finalAnthony Baxter2006-03-281-0/+5
|
* 2.4.3c1Anthony Baxter2006-03-232-4/+4
|
* Source file f.flush() after writing; trying to avoid lossage if userKurt B. Kaiser2006-03-192-0/+10
| | | | kills GUI. Report from Bruce Sherwood.
* 2.4.2 release stuffAnthony Baxter2005-09-282-1/+6
|
* pre-release machinationsAnthony Baxter2005-09-202-3/+3
|
* - Mac line endings were incorrect when pasting code from some browsersKurt B. Kaiser2005-08-232-0/+10
| | | | | | | when using X11 and the Fink distribution. Python Bug 1263656. Modified Files: Tag: release24-maint NEWS.txt ScriptBinding.py
* Fix all wrong instances of "it's".Georg Brandl2005-07-221-1/+1
|
* [ 1243081 ] repair typosGeorg Brandl2005-07-221-1/+1
|
* whitespace normalisationAnthony Baxter2005-06-031-1/+1
|
* *** empty log message ***Anthony Baxter2005-03-301-0/+1
|
* 2.4.1 preparations.Anthony Baxter2005-03-292-1/+6
|
* 2.4.1rc2 setupAnthony Baxter2005-03-162-1/+7
|
* pre-release magicAnthony Baxter2005-03-092-4/+4
|
* If an extension can't be loaded, print warning and skip it instead ofKurt B. Kaiser2005-01-192-1/+8
| | | | erroring out.
* Improve error handling when .idlerc can't be created (warn and exit)Kurt B. Kaiser2005-01-192-15/+19
|
* The GUI was hanging if the shell window was closed while a raw_input()Kurt B. Kaiser2004-12-233-7/+22
| | | | | | | | | was pending. Restored the quit() of the readline() mainloop(). http://mail.python.org/pipermail/idle-dev/2004-December/002307.html M NEWS.txt M PyShell.py M idlever.py
* doodedoodedoo on the way to 2.4 finalAnthony Baxter2004-11-301-3/+3
|
* preparing for 2.4 final (wooooooo!)Anthony Baxter2004-11-291-1/+1
|
* On OpenBSD, terminating IDLE with ctrl-c from the command line caused aKurt B. Kaiser2004-11-193-2/+12
| | | | | | | | stuck subprocess MainThread because only the SocketThread was exiting. M NEWS.txt M idlever.py M run.py
* 2.4rc1Anthony Baxter2004-11-182-2/+2
|
* Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"Kurt B. Kaiser2004-11-161-0/+4
| | | | | button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
* Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"Kurt B. Kaiser2004-11-161-0/+3
| | | | | | | button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. M configDialog.py
* The change in the linecache.checkcache() signature at rev 1.13 caused IDLE ↵Kurt B. Kaiser2004-11-132-6/+11
| | | | | | | | | to exit when an exception was raised while running w/o the subprocess. Python Bug 1063840 M NEWS.txt M PyShell.py
* post-releaseAnthony Baxter2004-11-041-0/+5
|
* release shenanigansAnthony Baxter2004-11-032-2/+2
|
* format_paragraph_event(): Patch 961387 introduced a bug here, causingTim Peters2004-10-242-13/+24
| | | | | | | the indentation of a comment block to be ignored when reformatting the block, leading to overly long reformatted lines (too wide by an amount equal to the indentation width). Looks like a typo in the original patch, a 1-character repair.
* release shenanigansAnthony Baxter2004-10-151-0/+6
|
* 1. If user passes a non-existant filename on the commandline, just openKurt B. Kaiser2004-08-227-47/+40
| | | | | | | | | | | | | | | | | a new file, don't raise a dialog. IDLEfork 954928. 2. Refactor EditorWindow.wakeup() to WindowList.ListedToplevel.wakeup() and clarify that the Toplevel of an EditorWindow is a WindowList.ListedToplevel. 3. Make a number of improvements to keyboard focus binding. Improve window raising, especially in the debugger. IDLEfork Bug 763524 (GvR list). 4. Bump idlever to 1.1a3 M Debugger.py M EditorWindow.py M FileList.py M NEWS.txt M PyShell.py M WindowList.py M idlever.py
* SF bug #833957: Ctrl+key combos stop working in IDLERaymond Hettinger2004-08-171-18/+18
| | | | Make key combinations work with upper and lowercase as is the MS standard.
* Patch #808719: Ignore the locale's encoding if it is an empty string.Martin v. Löwis2004-08-121-2/+2
| | | | Backported to 2.3.
* release dateAnthony Baxter2004-08-051-1/+1
|
* EditorWindow.py was not finding the .chm help file on Windows. TypoKurt B. Kaiser2004-07-211-1/+2
| | | | at Rev 1.54. Python Bug 990954
* Checking sys.platform for substring 'win' was breaking IDLE docs on MacKurt B. Kaiser2004-07-154-23/+39
| | | | | | | | | (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580 M EditorWindow.py M NEWS.txt M configHelpSourceEdit.py M idlever.py
* release datesAnthony Baxter2004-07-081-2/+2
|
* whitespace normalizationSkip Montanaro2004-07-061-2/+2
|
* Redirect the warning stream to the shell during the ScriptBinding check of ↵Kurt B. Kaiser2004-07-044-20/+72
| | | | | | | | | | | | user code and format the warning similarly to an exception for both that check and for warnings raised in the subprocess. M NEWS.txt M Pyshell.py M ScriptBinding.py M run.py
* Noam Raphel: Further developemt of CodeContext feature.Kurt B. Kaiser2004-06-066-48/+86
| | | | | | | | | | | | The visibility state of the code context pane is now persistent between sessions and the pane does not appear in the shell window. M CodeContext.py M EditorWindow.py M NEWS.txt M PyShell.py M config-extensions.def M configHandler.py
* SF patch #961387: Make IDLE's paragraph reformatting width configurableRaymond Hettinger2004-06-043-4/+27
|
* Testing for None should be done with 'is'Raymond Hettinger2004-05-041-1/+1
|