Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ad primitive debugger interface (so far it will step and show you the | Guido van Rossum | 1998-10-13 | 3 | -1/+130 |
| | | | | source, but it doesn't yet show the stack). | ||||
* | Misc | Guido van Rossum | 1998-10-13 | 1 | -5/+9 |
| | |||||
* | Perhaps a controversial change: when reporting a callback exception, | Guido van Rossum | 1998-10-13 | 1 | -0/+3 |
| | | | | | | | | assign the exception info to sys.last_{type,value,traceback}. That way, an introspective Tkinter app can inspect its own stack trace. (The controversy is that it would keep some objects alive, but that's probably no big deal.) | ||||
* | Whoops -- referenced self.top before it was set. | Guido van Rossum | 1998-10-13 | 1 | -1/+1 |
| | |||||
* | Added {xview,yview}_{moveto,scroll} to the Canvas class. | Barry Warsaw | 1998-10-13 | 1 | -0/+8 |
| | |||||
* | Added history and completion commands. | Guido van Rossum | 1998-10-13 | 1 | -0/+11 |
| | |||||
* | Updated | Guido van Rossum | 1998-10-13 | 1 | -40/+52 |
| | |||||
* | Add class browser functionality. | Guido van Rossum | 1998-10-13 | 1 | -0/+17 |
| | |||||
* | Add a close() method and bind to WM_DELETE_WINDOW protocol | Guido van Rossum | 1998-10-13 | 1 | -0/+4 |
| | |||||
* | Clear the linecache before printing a traceback | Guido van Rossum | 1998-10-13 | 1 | -0/+7 |
| | |||||
* | Added class browser binding. | Guido van Rossum | 1998-10-13 | 1 | -0/+2 |
| | |||||
* | Much improved, much left to do. | Guido van Rossum | 1998-10-13 | 1 | -11/+153 |
| | |||||
* | Ever-so-slight improvementL the patterns to recognize import | Guido van Rossum | 1998-10-13 | 1 | -2/+2 |
| | | | | statements now also stop at ';' (formerly they only stopped at '#'). | ||||
* | Moved search and match around so that search is documented first. | Guido van Rossum | 1998-10-13 | 1 | -25/+25 |
| | |||||
* | Make the return key do what I mean more often. | Guido van Rossum | 1998-10-13 | 1 | -1/+1 |
| | |||||
* | Make the return key do what I mean more often. | Guido van Rossum | 1998-10-13 | 1 | -9/+11 |
| | |||||
* | Doc strings by Chris Petrilli. | Guido van Rossum | 1998-10-13 | 1 | -42/+177 |
| | |||||
* | Updated listbox methods to Tk 8.0. (Moved some around, added | Guido van Rossum | 1998-10-13 | 1 | -12/+20 |
| | | | | x/yview_scroll/moveto.) | ||||
* | Adding the beginnings of a Class browser. Incomplete, yet. | Guido van Rossum | 1998-10-13 | 1 | -0/+70 |
| | |||||
* | Add new command, "Open module". You select or type a module name, | Guido van Rossum | 1998-10-13 | 2 | -0/+33 |
| | | | | and it opens the source. | ||||
* | Subsume functionality from Popup menu in Debug menu. | Guido van Rossum | 1998-10-12 | 1 | -7/+95 |
| | | | | Other stuff so the PyShell window can be resurrected from the Windows menu. | ||||
* | Get rid of PopUp menu. | Guido van Rossum | 1998-10-12 | 1 | -10/+30 |
| | | | | | Create a simple Windows menu. (Imperfect when Untitled windows exist.) Add wakeup() method: deiconify, raise, focus. | ||||
* | Generalize menu creation. | Guido van Rossum | 1998-10-12 | 1 | -20/+15 |
| | |||||
* | Add Debug and Help menu items. | Guido van Rossum | 1998-10-12 | 1 | -1/+13 |
| | |||||
* | Added a menu bar to every window. | Guido van Rossum | 1998-10-12 | 1 | -1/+45 |
| | |||||
* | Add menu configuration to the event configuration. | Guido van Rossum | 1998-10-12 | 1 | -60/+123 |
| | |||||
* | Pass a root to the help window. | Guido van Rossum | 1998-10-12 | 1 | -1/+1 |
| | |||||
* | Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate. | Jack Jansen | 1998-10-12 | 17 | -22/+21 |
| | |||||
* | When no master widget is specified, use options['parent'] if it exists. | Guido van Rossum | 1998-10-12 | 1 | -0/+2 |
| | |||||
* | Only reference Tkinter._default_root when needed. | Guido van Rossum | 1998-10-12 | 1 | -3/+2 |
| | |||||
* | Replace fprintf(stderr, ...) with PySys_WriteStderr(...). | Guido van Rossum | 1998-10-12 | 3 | -25/+25 |
| | |||||
* | Patches for mywrite() by Marc Lemburg: save/restore the error state | Guido van Rossum | 1998-10-12 | 1 | -3/+6 |
| | | | | reliably; check return value of vsprintf(). | ||||
* | Looks like I didn't test this interactively. The EventHook() code was | Guido van Rossum | 1998-10-12 | 1 | -4/+1 |
| | | | | | broken; it asked for the current thread state when there was none. Fixed by using the saved event_tstate. | ||||
* | Add parent argument to 'to to line number' dialog box. | Guido van Rossum | 1998-10-12 | 1 | -1/+2 |
| | |||||
* | Enhancements by Sjoerd Mullender: support for | Guido van Rossum | 1998-10-12 | 1 | -7/+7 |
| | | | | | from a.b import c import a . b | ||||
* | Add support for dotted module names to readmodule(). | Guido van Rossum | 1998-10-12 | 1 | -18/+26 |
| | |||||
* | Make mimetypes.guess_type understand data URLs. (Sjoerd Mullender) | Guido van Rossum | 1998-10-12 | 1 | -0/+21 |
| | |||||
* | Add a label at the top showing (very basic) help for the stack viewer. | Guido van Rossum | 1998-10-10 | 1 | -0/+21 |
| | | | | Add a label at the bottom showing the exception info. | ||||
* | Add Unix main script and test program. | Guido van Rossum | 1998-10-10 | 2 | -0/+22 |
| | |||||
* | Initial checking of Tk-based Python IDE. | Guido van Rossum | 1998-10-10 | 23 | -0/+2829 |
| | | | | | Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history. | ||||
* | Patch by Jonathan Giddy (with some cleanup by me) to always use the | Guido van Rossum | 1998-10-09 | 1 | -22/+30 |
| | | | | | | thread state of the thread calling mainloop() (or another event handling function) rather than the thread state of the function that created the client data structure. | ||||
* | Document the new list.extend() method. Interesting enough, the | Barry Warsaw | 1998-10-09 | 1 | -0/+6 |
| | | | | | canonical definition of extend() is very similar to append() except that the former doesn't list-ify the argument! | ||||
* | listextend(): New method which implements L.extend(L2). | Barry Warsaw | 1998-10-09 | 1 | -0/+74 |
| | |||||
* | New version that is much more compact and easier to maintain. (Sjoerd) | Guido van Rossum | 1998-10-09 | 1 | -239/+124 |
| | |||||
* | Remove unreachable code. (Sjoerd) | Guido van Rossum | 1998-10-09 | 1 | -8/+0 |
| | |||||
* | Use constants defined in cl module. (Sjoerd) | Guido van Rossum | 1998-10-09 | 2 | -13/+12 |
| | |||||
* | Removed unnecessary import of cl and CL. (Sjoerd) | Guido van Rossum | 1998-10-09 | 1 | -1/+0 |
| | |||||
* | Shit -- forgot to set the installer's title to the new version. | Guido van Rossum | 1998-10-09 | 1 | -1/+1 |
| | |||||
* | Change _tkinter.c compile options. | Guido van Rossum | 1998-10-09 | 1 | -2/+4 |
| | |||||
* | Add bufferobject.c. | Guido van Rossum | 1998-10-09 | 1 | -0/+6 |
| |