COMMITS
/ Python/bltinmodule.c August 27, 2002
P
execfile should call PyErr_SetFromErrnoWithFilename instead of
Peter Schneider-Kamp committed
August 16, 2002
G
A nice little speed-up for filter():
Guido van Rossum committed
August 14, 2002
M
Patch #550192: Set softspace to 0 in raw_input().
Martin v. Löwis committed
August 11, 2002
M
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg committed
June 30, 2002
M
Patch #569753: Remove support for WIN16.
Martin v. Löwis committed
June 14, 2002
G
SF patch 568629 by Oren Tirosh: types made callable.
Guido van Rossum committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
June 5, 2002
R
Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.
Raymond Hettinger committed
May 31, 2002
N
Change name from string to basestring
Neal Norwitz committed
May 24, 2002
G
- A new type object, 'string', is added. This is a common base type
Guido van Rossum committed
May 12, 2002
T
SF bug 555042: zip() may trigger MemoryError.
Tim Peters committed
April 29, 2002
T
builtin_zip(): Take a good guess at how big the result list will be,
Tim Peters committed
April 27, 2002
T
Repair widespread misuse of _PyString_Resize. Since it's clear people
Tim Peters committed
April 26, 2002
G
- New builtin function enumerate(x), from PEP 279. Example:
Guido van Rossum committed
April 14, 2002
J
Mass checkin of universal newline support.
Jack Jansen committed
April 3, 2002
G
Add the 'bool' type and its values 'False' and 'True', as described in
Guido van Rossum committed
March 9, 2002
M
Patch #494045: patches errno and stat to cope on plan9.
Martin v. Löwis committed
T
Docstring for filter(): Someone on the Tutor list reasonably complained
Tim Peters committed
January 12, 2002
M
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis committed
December 13, 2001
J
Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code
Jeremy Hylton committed
November 28, 2001
J
Use PyOS_snprintf instead of sprintf.
Jeremy Hylton committed
November 5, 2001
T
SF patch 473749 compile under OS/2 VA C++, from Michael Muller.
Tim Peters committed
October 29, 2001
T
Rename "dictionary" (type and constructor) to "dict".
Tim Peters committed
October 24, 2001
G
SF patch #474590 -- RISC OS support
Guido van Rossum committed
October 16, 2001
G
SF patch #471852 (anonymous) notes that getattr(obj, name, default)
Guido van Rossum committed
October 7, 2001
G
Implement isinstance(x, (A, B, ...)). Note that we only allow tuples,
Guido van Rossum committed
September 13, 2001
T
Get rid of builtin_open() entirely (the C code and docstring, not the
Tim Peters committed
T
_PyBuiltin_Init(): For clarity, macroize this purely repetitive code.
Tim Peters committed
T
SF bug [#460467] file objects should be subclassable.
Tim Peters committed
September 6, 2001
G
Rename 'getset' to 'property'.
Guido van Rossum committed
September 5, 2001
G
builtin_execfile(): initialize another local that the GCC on leroy
Guido van Rossum committed
September 4, 2001
T
At Guido's suggestion, here's a new C API function, PyObject_Dir(), like
Tim Peters committed
T
builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead
Tim Peters committed
September 3, 2001
T
Make dir() wordier (see the new docstring). The new behavior is a mixed
Tim Peters committed
August 24, 2001
G
Add 'super' builtin type.
Guido van Rossum committed
August 23, 2001
G
Add new built-in type 'getset' (PyGetSet_Type).
Guido van Rossum committed
August 17, 2001
T
Fix for bug [#452230] future division isn't propagated.
Tim Peters committed
T
A fiddled version of the rest of Michael Hudson's SF patch
Tim Peters committed
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 16, 2001
M
Patch #427190: Implement and use METH_NOARGS and METH_O.
Martin v. Löwis committed
August 8, 2001
M
Put conditional S_ISDIR definition(s) into pyport.h.
Martin v. Löwis committed
T
Repair the Windows build (S_ISDIR() macro doesn't exist).
Tim Peters committed
M
Patch #448227: Raise an exception when a directory is passed to execfile.
Martin v. Löwis committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 30, 2001
J
Do for hasattr() what was done for getattr()
Jeremy Hylton committed
J
Fix for SF byg [ #420304 ] getattr function w/ default
Jeremy Hylton committed
J
Fix for SF bug [ #443866 ] Evaluating func_code causing core dump
Jeremy Hylton committed
July 26, 2001
M
Undoing the UCS-4 patch addition which caused unichr() to return
Marc-André Lemburg committed
July 16, 2001
T
Part way to allowing "from __future__ import generators" to communicate
Tim Peters committed
July 9, 2001
T
Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed
Thomas Wouters committed