Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Let IDLE use the HTMLHelp docs on Windows, if found. | Thomas Heller | 2003-09-23 | 1 | -2/+6 |
| | | | | Already 'backported' to release23-maint. | ||||
* | Python Bug 775061 | Kurt B. Kaiser | 2003-09-10 | 3 | -97/+2 |
| | | | | | | 1. Remove "idle" script, it lives in Tools/scripts/ now. 2. Remove shebang from idle.py, should be called explicitly. 3. Remove obsolete test code from rpc.py; needs unit test. | ||||
* | Catch locale.error as well. Fixes #788378. Will backport to 2.3. | Martin v. Löwis | 2003-09-03 | 1 | -1/+1 |
| | |||||
* | IDLE didn't start correctly when Python was installed in "Program Files" | Kurt B. Kaiser | 2003-08-14 | 2 | -2/+19 |
| | | | | | | on W2K and XP. Python Bugs 780451, 784183 Backported to 2.2-maint | ||||
* | IDLEfork Bug 782759 | Kurt B. Kaiser | 2003-08-09 | 1 | -4/+9 |
| | | | | backported to 23-maint | ||||
* | Make sure eol_convention is an ASCII string. Fixes #774680. | Martin v. Löwis | 2003-08-05 | 1 | -0/+3 |
| | | | | Will backport to 2.3. | ||||
* | Added a banner to the shell startup message discussing possible | Kurt B. Kaiser | 2003-07-27 | 3 | -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. Kaiser | 2003-07-27 | 1 | -1/+1 |
| | |||||
* | 1. Python Bug 775541: Calltips error when docstring is None. Introduced | Kurt B. Kaiser | 2003-07-23 | 3 | -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. Kaiser | 2003-07-16 | 6 | -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 Hettinger | 2003-07-13 | 1 | -3/+1 |
| | | | | Needs to be backported to both IDLE and IDLEFORK. | ||||
* | SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds) | Raymond Hettinger | 2003-07-09 | 10 | -16/+14 |
| | |||||
* | SF Bug 767794 | Kurt B. Kaiser | 2003-07-09 | 1 | -0/+2 |
| | | | | "Break or continue outside loop causes crash" | ||||
* | Idlefork patch #682347: convert Unicode strings from readline to | Martin v. Löwis | 2003-06-22 | 2 | -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 missed | Kurt B. Kaiser | 2003-06-16 | 1 | -4/+5 |
| | |||||
* | Make CREDITS.txt a Latin-1 file. Extend ViewFile to support file encodings. | Martin v. Löwis | 2003-06-15 | 2 | -4/+17 |
| | |||||
* | Forwardport Patch from IDLEfork SF 615312 | Kurt B. Kaiser | 2003-06-15 | 1 | -0/+9 |
| | | | | Convert characters from the locale's encoding on output | ||||
* | Support testing in .../Lib/idlelib when calling <python PyShell.py> | Kurt B. Kaiser | 2003-06-15 | 1 | -0/+1 |
| | | | | by providing other modules access to globals set up in PyShell.main() | ||||
* | Move to Version 1.0b2 | Kurt B. Kaiser | 2003-06-15 | 1 | -1/+1 |
| | |||||
* | Forwardport Patch from IDLEfork SF 610329 | Kurt B. Kaiser | 2003-06-14 | 1 | -2/+6 |
| | | | | Remove deprecated tempfile usage | ||||
* | Remove the 2.2 compatibility module boolcheck.py and related code | Kurt B. Kaiser | 2003-06-14 | 3 | -14/+0 |
| | | | | | | M PyShell.py R boolcheck.py M run.py | ||||
* | Remove reference to IDLEfork | Kurt B. Kaiser | 2003-06-14 | 1 | -1/+1 |
| | |||||
* | Update NEWS.txt and move info on release 0.8.1 and earlier to HISTORY.txt | Kurt B. Kaiser | 2003-06-14 | 2 | -121/+147 |
| | | | | | M HISTORY.txt M NEWS.txt | ||||
* | Interrupt module has been folded into the thread module | Kurt B. Kaiser | 2003-06-13 | 2 | -54/+5 |
| | | | | | | | Modified Files: run.py Removed Files: interruptmodule.c | ||||
* | No longer needed. | Kurt B. Kaiser | 2003-06-12 | 1 | -4/+0 |
| | |||||
* | aboutDialog.py: | Kurt B. Kaiser | 2003-06-12 | 2 | -99/+122 |
| | | | | | | | | | | | | | | | | | | 1. Add additional buttons for Python Copyright and Credits 2. Use the Python LICENSE file instead of the old IDLE LICENSE.txt 3. Add additional buttons for IDLE's README and NEWS 4. Implement a method to read text from a _Printer object 5. Rename the Ok button to Close 6. Clean up to conform to Python code formatting standards textView.py: 1. Change background to white on all platforms 2. Increase height of frame 3. Add an optional parameter to textViewer to allow inserting text into the viewer instead of reading a file. 4. Rename the Ok button to Close Modified Files: aboutDialog.py textView.py | ||||
* | 1. Remove the Readme entry on the Help Menu, now in About dialog. | Kurt B. Kaiser | 2003-06-12 | 2 | -9/+1 |
| | | | | | | 2. Change title on About dialog. Modified Files: Bindings.py EditorWindow.py | ||||
* | Direct readers to CVS logs. | Kurt B. Kaiser | 2003-06-12 | 1 | -0/+4 |
| | |||||
* | It /is/ a package... | Kurt B. Kaiser | 2003-06-12 | 1 | -1/+1 |
| | |||||
* | Updated for IDLEfork re-integration | Kurt B. Kaiser | 2003-06-12 | 2 | -48/+66 |
| | |||||
* | Will use the Python LICENSE file instead. | Kurt B. Kaiser | 2003-06-12 | 1 | -51/+0 |
| | |||||
* | Remove setup file, no longer needed. | Kurt B. Kaiser | 2003-06-12 | 1 | -118/+0 |
| | |||||
* | Remove unneeded MANIFEST template. | Kurt B. Kaiser | 2003-06-12 | 1 | -11/+0 |
| | |||||
* | Remove unneeded installation instructions. | Kurt B. Kaiser | 2003-06-12 | 1 | -92/+0 |
| | |||||
* | Update version. | Kurt B. Kaiser | 2003-06-12 | 1 | -1/+1 |
| | |||||
* | SF 748975 Printing unsaved shell fails | Kurt B. Kaiser | 2003-06-09 | 1 | -2/+6 |
| | | | | M IOBinding.py | ||||
* | 1. Find in Files Dialog shows text selection if there is one | Kurt B. Kaiser | 2003-06-07 | 2 | -6/+4 |
| | | | | | | | 2. Remove obsolete comment associated with Window menu updating M EditorWindow.py M GrepDialog.py | ||||
* | 1. Update WindowList registry when filename changes so that | Kurt B. Kaiser | 2003-06-06 | 3 | -7/+4 |
| | | | | | | | | | | Window menu updates. 2. Display Python Shell window in Window menu 3. Remove some dead code in FileList.py M EditorWindow.py M FileList.py M WindowList.py | ||||
* | Avoid problem resolving 'localhost' | Kurt B. Kaiser | 2003-06-05 | 3 | -4/+8 |
| | | | | | | M PyShell.py M rpc.py M run.py | ||||
* | Change to <<open-module>>: always pop up the dialog, using the current | Guido van Rossum | 2003-06-05 | 1 | -8/+7 |
| | | | | selection as the default value. This is easier to use habitually. | ||||
* | SF 747667 Error Doesn't Decolorize | Kurt B. Kaiser | 2003-06-05 | 1 | -1/+6 |
| | | | | | | Also improved error notification if Tabnanny detects a TokenError. M ScriptBinding | ||||
* | SF 748973 Guido van Rossum patch | Kurt B. Kaiser | 2003-06-05 | 3 | -8/+21 |
| | | | | | | | | | New Window should save in the directory of the Editor Window from which it was selected. M EditorWindow.py M FileList.py M IOBinding.py | ||||
* | Eliminate the Revert to Default Settings submenu of Option menu. | Kurt B. Kaiser | 2003-06-02 | 1 | -2/+2 |
| | | | | Not implemented and not needed. | ||||
* | Modify the remote stack viewer to work in the threaded subprocess. | Kurt B. Kaiser | 2003-06-02 | 2 | -3/+26 |
| | | | | | M PyShell.py M run.py | ||||
* | Update for release | Kurt B. Kaiser | 2003-06-01 | 3 | -31/+52 |
| | | | | | Modified Files: NEWS.txt README.txt TODO.txt | ||||
* | Set the default for delete-exitfunc in config-main.def to True to handle | Kurt B. Kaiser | 2003-06-01 | 1 | -1/+1 |
| | | | | | | abnormal exit situations cleanly, especially stuck user threads. Future plan is to intercept the user's atexit functions and run them under IDLE's control. | ||||
* | SF 745525 | Kurt B. Kaiser | 2003-05-31 | 1 | -3/+14 |
| | | | | | | | Excecution environment and residual shell has cwd set to the directory of the module being run. M ScriptBinding.py | ||||
* | Update for release | Kurt B. Kaiser | 2003-05-30 | 5 | -45/+78 |
| | | | | | Modified Files: CREDITS.txt INSTALL.txt LICENSE.txt aboutDialog.py setup.py | ||||
* | Added a config-main General option to delete sys.exitfunc. The default | Kurt B. Kaiser | 2003-05-28 | 3 | -8/+24 |
| | | | | | | | | is not to do that. VPython and student environment support. M PyShell.py M config-main.def M run.py | ||||
* | Whitespace Normalization | Kurt B. Kaiser | 2003-05-26 | 3 | -7/+7 |
| | | | | Modified Files: PyShell.py ScriptBinding.py buildapp.py |