summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* Prepare for 2.3.7.v2.3.7Martin v. Löwis2008-03-112-1/+6
|
* updates for 2.3.6 finalAnthony Baxter2006-11-012-1/+6
|
* preparing for 2.3.6c1Anthony Baxter2006-10-232-1/+6
|
* damnAnthony Baxter2005-02-081-2/+2
|
* 2.3.5 finalAnthony Baxter2005-02-082-1/+6
|
* 1.0.5, to match the python patchlevelAnthony Baxter2005-01-251-1/+1
|
* pre-release bitsAnthony Baxter2005-01-252-4/+4
|
* On OpenBSD, terminating IDLE with ctrl-c from the command line caused aKurt B. Kaiser2005-01-192-3/+7
| | | | | | | stuck subprocess MainThread because only the SocketThread was exiting. M NEWS.txt M run.py
* Backport configDialog.py rev 1.60:Kurt B. Kaiser2005-01-192-0/+7
| | | | | | | | | Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set" 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 NEWS.txt M configDialog.py
* Backport EditorWindow rev 1.60 configHelpSourceEdit rev 1.7 15Jul04Kurt B. Kaiser2005-01-193-21/+33
| | | | | | | | | checking sys.platform for substring 'win' was breaking IDLE docs on Mac (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580. M EditorWindow.py M NEWS.txt M configHelpSourceEdit.py
* Backport rpc.py rev 1.28 dating from 21Jan04Kurt B. Kaiser2005-01-193-9/+15
| | | | | | | | | | | | | | | | | rpc.py:SocketIO - Large modules were generating large pickles when downloaded to the execution server. The return of the OK response from the subprocess initialization was interfering and causing the sending socket to be not ready. Add an IO ready test to fix this. Moved the polling IO ready test into pollpacket(). Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError". idlever.py should be 1.0.4 to align with NEWS.txt. There was no IDLE release at 2.3.1 which accounts for the unsync. M NEWS.txt M idlever.py M rpc.py
* If an extension can't be loaded, print warning and skip it instead ofKurt B. Kaiser2005-01-172-1/+8
| | | | erroring out.
* Improve error handling when .idlerc can't be created. This is a partialKurt B. Kaiser2005-01-172-2/+6
| | | | backport of configHandler.py, Revision 1.36, 11Jan05.
* Bump idle version.Kurt B. Kaiser2004-12-231-1/+1
|
* The GUI was hanging if the shell window was closed while a raw_input()Kurt B. Kaiser2004-12-232-7/+17
| | | | | | | | 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
* There was an error in the Tk error dialog fix at Rev 1.81.4.3 which caused ↵Kurt B. Kaiser2004-09-221-2/+2
| | | | | | | | | starting w/o the subprocess to fail. This is the same error in the 2.4 version which was corrected at Rev 1.85, but missed in the backport! Thanks to Hans Gubitz for noticing this. M PyShell.py
* Ignore the locale's encoding if it is an empty string.Martin v. Löwis2004-08-121-2/+2
|
* Backporting [ 778323 ] Tk Dialog Upon Subprocess Socket ErrorKurt B. Kaiser2004-06-065-57/+102
| | | | | | | | | | | | | | Added a Tk error dialog to run.py inform the user if the subprocess can't connect to the user GUI process. Added a timeout to the GUI's listening socket. Added Tk error dialogs to PyShell.py to announce a failure to bind the port or connect to the subprocess. Clean up error handling during connection initiation phase. This is an update of Python Patch 778323. M NEWS.txt M PyShell.py M ScriptBinding.py M idlever.py M run.py
* formatting nitAnthony Baxter2004-05-271-8/+8
|
* update to match Lib/idlelib/NEWS version numberAnthony Baxter2004-05-131-1/+1
|
* Fix version number (2.3.4c1) and release date (12-May-2004).Thomas Heller2004-05-121-1/+1
|
* Keybindings with the Shift modifier now work correctly. So do bindingsKurt B. Kaiser2004-03-305-74/+88
| | | | | | | | | | | | | | which use the Space key. Limit unmodified user keybindings to the function keys. Python Bug 775353, IDLEfork Bugs 755647, 761557 Improve error handling during startup if there's no Tkinter. M NEWS.txt M PyShell.py M config-keys.def M configHandler.py M keybindingDialog.py
* Version number and release date for IDLE, the version now is 1.0.2.Thomas Heller2003-12-042-2/+2
|
* Fix a typo introduced at Rev 1.19.8.2Kurt B. Kaiser2003-11-251-1/+1
| | | | M IOBinding.py
* Backport:Kurt B. Kaiser2003-11-243-2/+27
| | | | | | | | | | | | | | - After an exception, run.py was not setting the exception vector. Noam Raphael suggested correcting this so pdb's postmortem pm() would work. IDLEfork Patch 844675 Update NEWS and include some items missed in IDLE1.0b2. Bump the version. Modified Files: Tag: release23-maint NEWS.txt idlever.py run.py
* SF #775057, fix IDLE problem in about dialogNeal Norwitz2003-10-281-1/+3
| | | | If the file doesn't exist, the code to display an error message was broken
* and another dateAnthony Baxter2003-09-231-1/+1
|
* Let IDLE use the HTMLHelp docs, if found.Thomas Heller2003-09-221-2/+7
|
* Catch locale.error as well. Fixes #788378.Martin v. Löwis2003-09-031-1/+1
|
* - IDLE didn't start correctly when Python was installed in "Program Files"Kurt B. Kaiser2003-08-142-2/+18
| | | | on W2K and XP. Python Bugs 780451, 784183
* IDLEfork Bug 782759 config-main.def user configuration doc incorrectKurt B. Kaiser2003-08-091-4/+9
|
* Make sure eol_convention is an ASCII string. Fixes #774680.Martin v. Löwis2003-08-051-0/+3
|
* Added a banner to the shell startup message discussing possibleKurt B. Kaiser2003-07-273-2/+26
| | | | | | | | | warnings from personal firewall software. Added the same text to README.txt, updated NEWS.txt for release. M NEWS.txt M PyShell.py M README.txt
* Update for release.Kurt B. Kaiser2003-07-271-1/+1
|
* 1. Python Bug 775541: Calltips error when docstring is None. IntroducedKurt B. Kaiser2003-07-233-4/+12
| | | | | | by patch 769142. Fixed by patch 776062. KBK will backport net result to IDLE release22-maint and IDLEfork. 2. Update NEWS.txt and idlever for release.
* Update to reflect the current status of the configuration system.Kurt B. Kaiser2003-07-166-85/+74
| | | | | | | | | | | | | | | Extensions must still be configured manually and there is currently one set of extension key bindings for all platforms. Bring NEWS.txt up to date. Update CREDITS.txt and idlever.py for release. M NEWS.txt M config-extensions.def M extend.txt M help.txt M idlever.py
* SF bug #769142: CallTip trimming may loop forever.Raymond Hettinger2003-07-131-3/+1
| | | | Needs to be backported to both IDLE and IDLEFORK.
* SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds)Raymond Hettinger2003-07-0910-16/+14
|
* SF Bug 767794Kurt B. Kaiser2003-07-091-0/+2
| | | | "Break or continue outside loop causes crash"
* Idlefork patch #682347: convert Unicode strings from readline toMartin v. Löwis2003-06-222-4/+15
| | | | | IOBinding.encoding. Also set sys.std{in,out,err}.encoding, for both the local and the subprocess case.
* Add ':' after IDLE version, fix spacing on a couple of lines I missedKurt B. Kaiser2003-06-161-4/+5
|
* Make CREDITS.txt a Latin-1 file. Extend ViewFile to support file encodings.Martin v. Löwis2003-06-152-4/+17
|
* Forwardport Patch from IDLEfork SF 615312Kurt B. Kaiser2003-06-151-0/+9
| | | | Convert characters from the locale's encoding on output
* Support testing in .../Lib/idlelib when calling <python PyShell.py>Kurt B. Kaiser2003-06-151-0/+1
| | | | by providing other modules access to globals set up in PyShell.main()
* Move to Version 1.0b2Kurt B. Kaiser2003-06-151-1/+1
|
* Forwardport Patch from IDLEfork SF 610329Kurt B. Kaiser2003-06-141-2/+6
| | | | Remove deprecated tempfile usage
* Remove the 2.2 compatibility module boolcheck.py and related codeKurt B. Kaiser2003-06-143-14/+0
| | | | | | M PyShell.py R boolcheck.py M run.py
* Remove reference to IDLEforkKurt B. Kaiser2003-06-141-1/+1
|
* Update NEWS.txt and move info on release 0.8.1 and earlier to HISTORY.txtKurt B. Kaiser2003-06-142-121/+147
| | | | | M HISTORY.txt M NEWS.txt
* Interrupt module has been folded into the thread moduleKurt B. Kaiser2003-06-132-54/+5
| | | | | | | Modified Files: run.py Removed Files: interruptmodule.c