COMMITS
/ Python/bltinmodule.c 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
January 17, 2001
M
This patch adds a new builtin unistr() which behaves like str()
Marc-André Lemburg committed
G
Use rich comparisons in min and max.
Guido van Rossum committed
January 12, 2001
F
Update the docstring for apply() so that "args" is marked as optional
Fred Drake committed
G
(Modified) patch by Ping - SF Patch #102681.
Guido van Rossum committed
January 4, 2001
N
Add NotImplemented to the builtin module.
Neil Schemenauer committed
December 23, 2000
A
CHange error messages for ord(), using "string" instead of "string or Unicode"
Andrew M. Kuchling committed
December 20, 2000
A
Whoops! Two stray characters crept in to my last check-in
Andrew M. Kuchling committed
A
Patch #102955, fixing one of the warnings in bug #121479:
Andrew M. Kuchling committed
December 4, 2000
N
Make isinstance() more permissive in what types of arguments it
Neil Schemenauer committed
October 24, 2000
F
Ka-Ping Yee <ping@lfw.org>:
Fred Drake committed
September 26, 2000
F
Rationalize use of limits.h, moving the inclusion to Python.h.
Fred Drake committed
September 19, 2000
M
This patch adds a new Python C API called PyString_AsStringAndSize()
Marc-André Lemburg committed
September 18, 2000
M
Deferred the attribute name object type checking to the underlying
Marc-André Lemburg committed
September 1, 2000
G
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum committed
August 27, 2000
G
Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),
Guido van Rossum committed
August 18, 2000
B
comples_from_string(): Move s_buffer[] up to the top-level function
Barry Warsaw committed
August 12, 2000
T
Clean up a couple of warnings on Win64. The downcast of the strlen size_t
Trent Mick committed
August 3, 2000
B
Both PEP 201 Lockstep Iteration and SF patch #101030 have been
Barry Warsaw committed
July 31, 2000
P
merge Include/my*.h into Include/pyport.h
Peter Schneider-Kamp committed
July 23, 2000
T
Another missed ansification.
Thomas Wouters committed
July 22, 2000
T
Mass ANSIfication of function definitions. Doesn't cover all 'extern'
Thomas Wouters committed
July 12, 2000
J
replace PyXXX_Length calls with PyXXX_Size calls
Jeremy Hylton committed
July 9, 2000
T
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Tim Peters committed
T
Get rid of unused vars in builtin_unicode (they were causing
Tim Peters committed
July 7, 2000
M
Fixed unicode() to use the new API PyUnicode_FromEncodedObject().
Marc-André Lemburg committed