Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of old IDLE. Lib/idlelib rules! | Guido van Rossum | 2003-06-14 | 1 | -58/+0 |
| | |||||
* | Apply diff2.txt from SF patch http://www.python.org/sf/572113 | Walter Dörwald | 2002-09-11 | 1 | -1/+0 |
| | | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining. | ||||
* | Add primitive printing support for Unix and Windows. | Guido van Rossum | 2002-06-10 | 1 | -0/+2 |
| | |||||
* | Add Python Documentation entry to Help menu. | Guido van Rossum | 1999-08-26 | 1 | -0/+3 |
| | |||||
* | Remove obsolete 'script' menu. | Guido van Rossum | 1999-04-22 | 1 | -5/+0 |
| | |||||
* | Add PathBrowser to File module | Guido van Rossum | 1999-03-10 | 1 | -0/+1 |
| | |||||
* | Move menu/key binding code from Bindings.py to EditorWindow.py, | Guido van Rossum | 1999-01-28 | 1 | -59/+3 |
| | | | | | | | | with changed APIs -- it makes much more sense there. Also add a new feature: if the first character of a menu label is a '!', it gets a checkbox. Checkboxes are bound to Boolean Tcl variables that can be accessed through the new getvar/setvar/getrawvar API; the variable is named after the event to which the menu is bound. | ||||
* | Paul Prescod's patches to allow the stack viewer to pop up when a | Guido van Rossum | 1999-01-08 | 1 | -0/+1 |
| | | | | traceback is printed. | ||||
* | Checking in IDLE 0.2. | Guido van Rossum | 1999-01-02 | 1 | -100/+15 |
| | | | | | | | | | | | | Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet. | ||||
* | New approach, separate tables for menus (platform-independent) and key | Guido van Rossum | 1998-11-27 | 1 | -168/+192 |
| | | | | | definitions (platform-specific), and generating accelerator strings automatically from the key definitions. | ||||
* | Get rid of conflicting ^X binding. Use ^W. | Guido van Rossum | 1998-10-16 | 1 | -3/+5 |
| | |||||
* | Ad primitive debugger interface (so far it will step and show you the | Guido van Rossum | 1998-10-13 | 1 | -0/+1 |
| | | | | source, but it doesn't yet show the stack). | ||||
* | Added class browser binding. | Guido van Rossum | 1998-10-13 | 1 | -0/+2 |
| | |||||
* | Add new command, "Open module". You select or type a module name, | Guido van Rossum | 1998-10-13 | 1 | -0/+2 |
| | | | | and it opens the source. | ||||
* | Add Debug and Help menu items. | Guido van Rossum | 1998-10-12 | 1 | -1/+13 |
| | |||||
* | Add menu configuration to the event configuration. | Guido van Rossum | 1998-10-12 | 1 | -60/+123 |
| | |||||
* | Initial checking of Tk-based Python IDE. | Guido van Rossum | 1998-10-10 | 1 | -0/+92 |
Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history. |