COMMITS
/ Python/bltinmodule.c 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
July 5, 2001
G
Complete the xrange-simplification checkins: call PyRange_New() with
Guido van Rossum committed
June 27, 2001
F
use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE
Fredrik Lundh committed
June 26, 2001
G
Cosmetic changes to MvL's change to unichr():
Guido van Rossum committed
M
Support using UCS-4 as the Py_UNICODE type:
Martin v. Löwis committed
F
more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd"
Fredrik Lundh committed
F
experimental UCS-4 support: don't assume that MS_WIN32 implies
Fredrik Lundh committed
May 28, 2001
T
Cruft cleanup: Removed the unused last_is_sticky argument from the internal
Tim Peters committed
May 21, 2001
T
SF bug #425836: Reference leak in filter().
Tim Peters committed
May 14, 2001
May 13, 2001
May 6, 2001
T
Generalize zip() to work with iterators.
Tim Peters committed
May 5, 2001
T
Make PyIter_Next() a little smarter (wrt its knowledge of iterator
Tim Peters committed
May 4, 2001
T
Generalize reduce() to work with iterators.
Tim Peters committed
May 3, 2001
T
Generalize map() to work with iterators.
Tim Peters committed
T
Generalize max(seq) and min(seq) to work with iterators.
Tim Peters committed
May 2, 2001
T
Generalize filter(f, seq) to work with iterators. This also generalizes
Tim Peters committed
April 28, 2001
T
Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up.
Tim Peters committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 7, 2001
T
SF patch #413552 - Premature decref on object
Tim Peters committed
March 22, 2001
J
Extend support for from __future__ import nested_scopes
Jeremy Hylton committed
March 21, 2001
G
Move the code implementing isinstance() and issubclass() to new C
Guido van Rossum committed
January 19, 2001
M
Backed out the unistr() builtin.
Marc-André Lemburg committed
J
clearer error messages for apply() and "no locals"
Jeremy Hylton committed
G
Fix for the bug in complex() just reported by Ping.
Guido van Rossum committed