Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Fix multi-arg list.append() calls. | Guido van Rossum | 1998-10-08 | 14 | -27/+27 |
| | |||||
* | There's no need to declare Tk_GetNumMainWindows() (and it breaks | Guido van Rossum | 1998-10-08 | 1 | -2/+0 |
| | | | | something in the latest win342 build). | ||||
* | Use the t# format where appropriate. Greg Stein. | Guido van Rossum | 1998-10-08 | 9 | -37/+34 |
| | |||||
* | Implement new format character 't#'. This is like s#, accepting an | Guido van Rossum | 1998-10-08 | 1 | -0/+25 |
| | | | | | object that implements the buffer interface, but requires a buffer that contains 8-bit character data. Greg Stein. | ||||
* | Greg Stein: Implement the new bf_getcharbuffer function, indicating | Guido van Rossum | 1998-10-08 | 2 | -4/+36 |
| | | | | that (as far as the data type is concerned!) this is character data. | ||||
* | Changes by Greg Stein (code) and GvR (design). | Guido van Rossum | 1998-10-08 | 1 | -2/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For backward compatibility, this member should only be used (this includes testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set in the type structure, below. Note that if its flag is not set, we may be looking at an extension module compiled for 1.5.1, which will have garbage at the bf_getcharbuffer member (because the struct wasn't as long then). If the flag is one, the pointer may still be NULL. The function found at this member is used in a similar manner as bf_getreadbuffer, but it is known to point to 8-bit character data. (See discussion in getargs.c checked in later.) As a general feature for extending the type structure and the various structures that (may) hang off it in a backwards compatible way, we rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before, this slot was always zero. In 1.5.1, it may contain various flags indicating extra fields that weren't present in 1.5.1. The only flag defined so far is for the bf_getcharbuffer member of the PyBufferProcs struct. Note that the new spares (tp_xxx5 - tp_xxx8), once they become used, should also be protected by a flag (or flags) in tp_flags. | ||||
* | For 1.5.2a2. | Guido van Rossum | 1998-10-08 | 1 | -4/+48 |
| | | | | | | | Install zlib.dll in DLLs instead of windows32 system directory. Install freeze, webchecker and versioncheck tools. Add Content type: text/plain registry keys for .py, .pyw. Add file type .pyo (same as .pyc). | ||||
* | Some kind of source control krept in. | Guido van Rossum | 1998-10-08 | 1 | -0/+28 |
| | |||||
* | Whatever | Guido van Rossum | 1998-10-08 | 1 | -0/+2 |
| | |||||
* | The previous checkin contained an experiment of Greg Stein's that wasn't | Guido van Rossum | 1998-10-08 | 1 | -1/+1 |
| | | | | meant for checkin, and which broke marshal.loads(). | ||||
* | On Win32, use | Guido van Rossum | 1998-10-08 | 1 | -1/+4 |
| | | | | | LoadLibraryEx(pathname, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) to search dependent DLLs in the directory of the pathname. | ||||
* | Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. | Guido van Rossum | 1998-10-07 | 4 | -11/+27 |
| | |||||
* | Make the dependencies really work for the HTML version. | Fred Drake | 1998-10-07 | 1 | -0/+2 |
| | |||||
* | Add test for BSDI -- by Nigel Head and otto@mail.olympus.net. | Guido van Rossum | 1998-10-07 | 2 | -215/+229 |
| | |||||
* | Added a whole bunch of descriptions. | Guido van Rossum | 1998-10-07 | 1 | -0/+11 |
| | |||||
* | Use the imp module to get the magic word. | Guido van Rossum | 1998-10-07 | 1 | -6/+2 |
| | |||||
* | Changes to support other object types besides strings | Guido van Rossum | 1998-10-07 | 5 | -16/+61 |
| | | | | | as the code string of code objects, as long as they support the (readonly) buffer interface. By Greg Stein. |