COMMITS
/ Python/bltinmodule.c October 21, 2005
J
Fix a bunch of imports to use code.h instead of compile.h.
Jeremy Hylton committed
October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
September 24, 2005
R
Convert iterator __len__() methods to a private API.
Raymond Hettinger committed
September 20, 2005
A
Removed a check "if (args != NULL)" which is always True and makes no sense.
Armin Rigo committed
September 15, 2005
G
bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.
Georg Brandl committed
August 31, 2005
G
Whitespace normalization.
Georg Brandl committed
August 21, 2005
R
SF bug #1242657: list(obj) can swallow KeyboardInterrupt
Raymond Hettinger committed
July 19, 2005
G
Fix cleanup DECREF logic in builtin_filter function.
Georg Brandl committed
March 11, 2005
R
Add two new functions, any() and all().
Raymond Hettinger committed
December 7, 2004
B
Put parentheses around the assignment in the 'while' loop conditional
Brett Cannon committed
December 3, 2004
R
SF patch #1077353: add key= argument to min and max
Raymond Hettinger committed
August 25, 2004
M
Patch #1015021: Stop claiming that coerce can return None.
Martin v. Löwis committed
August 12, 2004
M
Patch #1005468: Disambiguate "min() or max()" exception string.
Martin v. Löwis committed
August 7, 2004
J
Subclasses of string can no longer be interned. The semantics of
Jeremy Hylton committed
August 2, 2004
M
for some reason, the lack of adherence to Python's C whitespace rules
Michael W. Hudson committed
R
Completed the patch for Bug #215126.
Raymond Hettinger committed
July 19, 2004
N
Check the type of values returned by __int__, __float__, __long__,
Neil Schemenauer committed
July 7, 2004
M
This closes patch:
Michael W. Hudson committed
July 6, 2004
R
* Fix missing return after error message is set.
Raymond Hettinger committed
July 2, 2004
R
SF Bug #215126: Over restricted type checking on eval() function
Raymond Hettinger committed
March 29, 2004
A
OS/2 VACPP build updates/fixes
Andrew MacIntyre committed
February 2, 2004
H
Fix input() builtin function to respect compiler flags.
Hye-Shik Chang committed
January 4, 2004
R
Apply pre-sizing optimization to a broader class of objects.
Raymond Hettinger committed
R
Apply map/zip pre-sizing optimization to a broader class of objects.
Raymond Hettinger committed
December 17, 2003
R
Guido grants a Christmas wish:
Raymond Hettinger committed
December 5, 2003
F
Remove the PendingDeprecationWarning from apply(). apply() will
Fred Drake committed
November 16, 2003
R
* Migrate set() and frozenset() from the sandbox.
Raymond Hettinger committed
November 6, 2003
R
Implement and apply PEP 322, reverse iteration
Raymond Hettinger committed
October 25, 2003
A
regressing the performance bugfix -- Guido wants the performance bug left
Alex Martelli committed
A
Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes
Alex Martelli committed
R
Use PyArg_UnpackTuple() where possible.
Raymond Hettinger committed
October 12, 2003
R
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger committed
September 16, 2003
J
Correct check of PyUnicode_Resize() return value.
Jeremy Hylton committed
J
Reflow long lines and reformat.
Jeremy Hylton committed
August 18, 2003
W
Fix a crash: when sq_item failed the code continued blindly and used the
Walter Dörwald committed
August 14, 2003
N
Make filter(bool, ...) as fast as filter(None, ...).
Neil Schemenauer committed
August 2, 2003
R
As discussed on python-dev, changed builtin.zip() to handle zero arguments
Raymond Hettinger committed
April 23, 2003
A
some more error-message enhancements
Alex Martelli committed
A
complete and clarify some error messages for range()
Alex Martelli committed
April 22, 2003
A
fixed a potential refcount bug (thanks Raymond!).
Alex Martelli committed
A
Adding new built-in function sum, with docs and tests.
Alex Martelli committed
April 15, 2003
G
Some errors from range() should be TypeError, not ValueError.
Guido van Rossum committed
April 14, 2003
G
Prompted by Tim's comment, when handle_range_longs() sees an
Guido van Rossum committed
April 13, 2003
T
handle_range_longs(): refcount handling is very delicate here, and
Tim Peters committed
April 11, 2003
G
Patch by Chad Netzer (with significant change):
Guido van Rossum committed
April 6, 2003
R
SF patch #701494: more apply removals
Raymond Hettinger committed
March 23, 2003
T
Improved new Py_TRACE_REFS gimmicks.
Tim Peters committed
February 23, 2003
N
Fix SF bug #690435, apply fails to check if warning raises exception
Neal Norwitz committed
February 13, 2003
G
- Finally fixed the bug in compile() and exec where a string ending
Guido van Rossum committed
February 10, 2003
W
Change filtertuple() to use tp_as_sequence->sq_item
Walter Dörwald committed