Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | In build_html(), strip off leading "./" from filename, added by | Fred Drake | 1998-10-16 | 1 | -0/+1 |
| | | | | kpsewhich. This caused a problem with the latest latex2html beta. | ||||
* | Oops | Guido van Rossum | 1998-10-16 | 1 | -1/+3 |
| | |||||
* | Better debugger support (show stack etc). | Guido van Rossum | 1998-10-16 | 2 | -11/+88 |
| | |||||
* | Follow renames in StackViewer module | Guido van Rossum | 1998-10-16 | 1 | -2/+2 |
| | |||||
* | Rename classes to StackViewer (the widget) and StackBrowser (the toplevel). | Guido van Rossum | 1998-10-16 | 1 | -6/+10 |
| | |||||
* | Add close() method | Guido van Rossum | 1998-10-16 | 1 | -0/+3 |
| | |||||
* | Clarify 'Open Module' dialog text | Guido van Rossum | 1998-10-16 | 1 | -1/+2 |
| | |||||
* | Restructured into a browser and a widget. | Guido van Rossum | 1998-10-16 | 1 | -161/+87 |
| | |||||
* | Generalized the scrolled list which is the base for the class and | Guido van Rossum | 1998-10-15 | 2 | -128/+205 |
| | | | | method browser into a separate class in its own module. | ||||
* | For submenus remember the parent and parent index, so we can grey out our | Jack Jansen | 1998-10-15 | 1 | -0/+8 |
| | | | | | entry if the menu is disabled. This does create a circular reference, so cleanup becomes more important. | ||||
* | Cosmetic change | Guido van Rossum | 1998-10-15 | 1 | -8/+20 |
| | |||||
* | Set kAECanInteract and kAECanSwitchLayer flags for the finder interactions. | Jack Jansen | 1998-10-15 | 1 | -0/+3 |
| | |||||
* | Clarify that close() of a stream opened by popen() returns None if the | Guido van Rossum | 1998-10-15 | 1 | -1/+2 |
| | | | | exit status is zero. | ||||
* | Don't show function name if there is none | Guido van Rossum | 1998-10-15 | 1 | -1/+3 |
| | |||||
* | The help dialog id numbers never got changed when the dialog numbers changed, | Jack Jansen | 1998-10-15 | 1 | -0/+0 |
| | | | | so balloons haven't been working for ages. Apparently nobody noticed:-) | ||||
* | Updated __main__ unit test | Barry Warsaw | 1998-10-15 | 1 | -5/+10 |
| | |||||
* | When run as a script, don't pass a fake __main__ dictionary; use the | Guido van Rossum | 1998-10-15 | 1 | -1/+1 |
| | | | | real one. | ||||
* | When errno is zero, avoid calling strerror() and use "Error" for the | Guido van Rossum | 1998-10-14 | 1 | -2/+7 |
| | | | | message. | ||||
* | Fix so that after a fork() -- on Unix only -- the template gets | Guido van Rossum | 1998-10-14 | 1 | -3/+9 |
| | | | | recalculated. | ||||
* | Doc strings by Chris Petrilli. | Guido van Rossum | 1998-10-14 | 1 | -6/+79 |
| | | | | Also added MD5Type object. | ||||
* | No need to issue a fatal error if the PyDict_SetItemString fails; the | Guido van Rossum | 1998-10-14 | 1 | -3/+2 |
| | | | | caller (in import.c) will test for errors and take appropriate action. | ||||
* | Polish the Debugger GUI a bit. | Guido van Rossum | 1998-10-14 | 2 | -20/+52 |
| | | | | Closing it now also does the right thing. | ||||
* | ACK! There was still an unescaped newline in a docstring. | Guido van Rossum | 1998-10-14 | 1 | -1/+1 |
| | |||||
* | 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 |
| |