| Commit message (Expand) | Author | Age | Files | Lines |
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+65 |
|
|
* | Put parentheses around the assignment in the 'while' loop conditional | Brett Cannon | 2004-12-07 | 1 | -1/+1 |
|
|
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -39/+71 |
|
|
* | Patch #1015021: Stop claiming that coerce can return None. | Martin v. Löwis | 2004-08-25 | 1 | -4/+4 |
|
|
* | Patch #1005468: Disambiguate "min() or max()" exception string. | Martin v. Löwis | 2004-08-12 | 1 | -3/+4 |
|
|
* | Subclasses of string can no longer be interned. The semantics of | Jeremy Hylton | 2004-08-07 | 1 | -0/+5 |
|
|
* | for some reason, the lack of adherence to Python's C whitespace rules | Michael W. Hudson | 2004-08-02 | 1 | -2/+2 |
|
|
* | Completed the patch for Bug #215126. | Raymond Hettinger | 2004-08-02 | 1 | -2/+6 |
|
|
* | Check the type of values returned by __int__, __float__, __long__, | Neil Schemenauer | 2004-07-19 | 1 | -2/+20 |
|
|
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -1/+2 |
|
|
* | * Fix missing return after error message is set. | Raymond Hettinger | 2004-07-06 | 1 | -1/+2 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -6/+13 |
|
|
* | OS/2 VACPP build updates/fixes | Andrew MacIntyre | 2004-03-29 | 1 | -1/+1 |
|
|
* | Fix input() builtin function to respect compiler flags. | Hye-Shik Chang | 2004-02-02 | 1 | -1/+4 |
|
|
* | Apply pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -8/+4 |
|
|
* | Apply map/zip pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -11/+7 |
|
|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -0/+45 |
|
|
* | Remove the PendingDeprecationWarning from apply(). apply() will | Fred Drake | 2003-12-05 | 1 | -4/+0 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+2 |
|
|
* | Implement and apply PEP 322, reverse iteration | Raymond Hettinger | 2003-11-06 | 1 | -0/+1 |
|
|
* | regressing the performance bugfix -- Guido wants the performance bug left | Alex Martelli | 2003-10-25 | 1 | -1/+1 |
|
|
* | Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes | Alex Martelli | 2003-10-25 | 1 | -1/+1 |
|
|
* | Use PyArg_UnpackTuple() where possible. | Raymond Hettinger | 2003-10-25 | 1 | -1/+1 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -4/+4 |
|
|
* | Correct check of PyUnicode_Resize() return value. | Jeremy Hylton | 2003-09-16 | 1 | -1/+2 |
|
|
* | Reflow long lines and reformat. | Jeremy Hylton | 2003-09-16 | 1 | -13/+13 |
|
|
* | Fix a crash: when sq_item failed the code continued blindly and used the | Walter Dörwald | 2003-08-18 | 1 | -3/+10 |
|
|
* | Make filter(bool, ...) as fast as filter(None, ...). | Neil Schemenauer | 2003-08-14 | 1 | -1/+1 |
|
|
* | As discussed on python-dev, changed builtin.zip() to handle zero arguments | Raymond Hettinger | 2003-08-02 | 1 | -5/+3 |
|
|
* | some more error-message enhancements | Alex Martelli | 2003-04-23 | 1 | -10/+10 |
|
|
* | complete and clarify some error messages for range() | Alex Martelli | 2003-04-23 | 1 | -5/+5 |
|
|
* | fixed a potential refcount bug (thanks Raymond!). | Alex Martelli | 2003-04-22 | 1 | -1/+1 |
|
|
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+61 |
|
|
* | Some errors from range() should be TypeError, not ValueError. | Guido van Rossum | 2003-04-15 | 1 | -3/+3 |
|
|
* | Prompted by Tim's comment, when handle_range_longs() sees an | Guido van Rossum | 2003-04-14 | 1 | -9/+9 |
|
|
* | handle_range_longs(): refcount handling is very delicate here, and | Tim Peters | 2003-04-13 | 1 | -31/+50 |
|
|
* | Patch by Chad Netzer (with significant change): | Guido van Rossum | 2003-04-11 | 1 | -5/+190 |
|
|
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -1/+4 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -2/+16 |
|
|
* | Fix SF bug #690435, apply fails to check if warning raises exception | Neal Norwitz | 2003-02-23 | 1 | -3/+4 |
|
|
* | - Finally fixed the bug in compile() and exec where a string ending | Guido van Rossum | 2003-02-13 | 1 | -1/+3 |
|
|
* | Change filtertuple() to use tp_as_sequence->sq_item | Walter Dörwald | 2003-02-10 | 1 | -1/+6 |
|
|
* | Squashed compiler wng about signed/unsigned clash in comparison. | Tim Peters | 2003-02-10 | 1 | -1/+1 |
|
|
* | Change filterstring() and filterunicode(): If the | Walter Dörwald | 2003-02-10 | 1 | -43/+48 |
|
|
* | My previous checkin caused compile() to no longer accept buffers, as noted | Just van Rossum | 2003-02-10 | 1 | -5/+7 |
|
|
* | patch #683515: "Add unicode support to compile(), eval() and exec" | Just van Rossum | 2003-02-10 | 1 | -6/+40 |
|
|
* | Make sure filter() never returns tuple, str or unicode | Walter Dörwald | 2003-02-04 | 1 | -5/+22 |
|
|
* | PyUnicode_Resize() doesn't free its argument in case of a failure, | Walter Dörwald | 2003-02-04 | 1 | -1/+1 |
|
|
* | filterstring() and filterunicode() in Python/bltinmodule.c | Walter Dörwald | 2003-02-04 | 1 | -8/+70 |
|
|
* | SF #661437, apply() should get PendingDeprecation | Neal Norwitz | 2003-02-03 | 1 | -0/+3 |
|
|