- 12 Oct, 1998 4 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
from a.b import c import a . b
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 10 Oct, 1998 3 commits
-
-
Guido van Rossum authored
Add a label at the bottom showing the exception info.
-
Guido van Rossum authored
-
Guido van Rossum authored
Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history.
-
- 09 Oct, 1998 10 commits
-
-
Guido van Rossum authored
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.
-
Barry Warsaw authored
canonical definition of extend() is very similar to append() except that the former doesn't list-ify the argument!
-
Barry Warsaw authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 08 Oct, 1998 11 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
something in the latest win342 build).
-
Guido van Rossum authored
-
Guido van Rossum authored
object that implements the buffer interface, but requires a buffer that contains 8-bit character data. Greg Stein.
-
Guido van Rossum authored
that (as far as the data type is concerned!) this is character data.
-
Guido van Rossum authored
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.
-
Guido van Rossum authored
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).
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
meant for checkin, and which broke marshal.loads().
-
Guido van Rossum authored
LoadLibraryEx(pathname, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) to search dependent DLLs in the directory of the pathname.
-
- 07 Oct, 1998 12 commits
-
-
Guido van Rossum authored
-
Fred Drake authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
as the code string of code objects, as long as they support the (readonly) buffer interface. By Greg Stein.
-
Fred Drake authored
\subparagraph sections. Indicate the default in the --help message.
-
Fred Drake authored
pass options to latex2html.
-
Guido van Rossum authored
Also (non-BSDI specific): - Change the CHECK_STATUS() macro so it tests for nonzero error codes instead of negative error codes only (this was needed for BSDI, but appears to be correct according to the PTHREADS spec). - use memset() to zero out the allocated lock structure. Again, this was needed for BSDI, but can't hurt elsewhere either.
-
Guido van Rossum authored
-
Guido van Rossum authored
Remove unused decls of getloclock() and is_lockobject().
-
Guido van Rossum authored
(1) add dummy decl for strptime(); (2) move the code to set accept2dyear to the front of inittime().
-