summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Merge ast-branch to headJeremy Hylton2005-10-201-1/+1
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-3/+3
* Removed a check "if (args != NULL)" which is always True and makes no sense.Armin Rigo2005-09-201-5/+3
* bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.Georg Brandl2005-09-151-0/+7
* Whitespace normalization.Georg Brandl2005-08-311-7/+7
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+12
* Fix cleanup DECREF logic in builtin_filter function.Georg Brandl2005-07-191-6/+6
* Add two new functions, any() and all().Raymond Hettinger2005-03-111-0/+65
* Put parentheses around the assignment in the 'while' loop conditionalBrett Cannon2004-12-071-1/+1
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-031-39/+71
* Patch #1015021: Stop claiming that coerce can return None.Martin v. Löwis2004-08-251-4/+4
* Patch #1005468: Disambiguate "min() or max()" exception string.Martin v. Löwis2004-08-121-3/+4
* Subclasses of string can no longer be interned. The semantics ofJeremy Hylton2004-08-071-0/+5
* for some reason, the lack of adherence to Python's C whitespace rulesMichael W. Hudson2004-08-021-2/+2
* Completed the patch for Bug #215126.Raymond Hettinger2004-08-021-2/+6
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-191-2/+20
* This closes patch:Michael W. Hudson2004-07-071-1/+2
* * Fix missing return after error message is set.Raymond Hettinger2004-07-061-1/+2
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-6/+13
* OS/2 VACPP build updates/fixesAndrew MacIntyre2004-03-291-1/+1
* Fix input() builtin function to respect compiler flags.Hye-Shik Chang2004-02-021-1/+4
* Apply pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-8/+4
* Apply map/zip pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-11/+7
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-0/+45
* Remove the PendingDeprecationWarning from apply(). apply() willFred Drake2003-12-051-4/+0
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+2
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+1
* regressing the performance bugfix -- Guido wants the performance bug leftAlex Martelli2003-10-251-1/+1
* Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixesAlex Martelli2003-10-251-1/+1
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2003-10-251-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-4/+4
* Correct check of PyUnicode_Resize() return value.Jeremy Hylton2003-09-161-1/+2
* Reflow long lines and reformat.Jeremy Hylton2003-09-161-13/+13
* Fix a crash: when sq_item failed the code continued blindly and used theWalter Dörwald2003-08-181-3/+10
* Make filter(bool, ...) as fast as filter(None, ...).Neil Schemenauer2003-08-141-1/+1
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-5/+3
* some more error-message enhancementsAlex Martelli2003-04-231-10/+10
* complete and clarify some error messages for range()Alex Martelli2003-04-231-5/+5
* fixed a potential refcount bug (thanks Raymond!).Alex Martelli2003-04-221-1/+1
* Adding new built-in function sum, with docs and tests.Alex Martelli2003-04-221-0/+61
* Some errors from range() should be TypeError, not ValueError.Guido van Rossum2003-04-151-3/+3
* Prompted by Tim's comment, when handle_range_longs() sees anGuido van Rossum2003-04-141-9/+9
* handle_range_longs(): refcount handling is very delicate here, andTim Peters2003-04-131-31/+50
* Patch by Chad Netzer (with significant change):Guido van Rossum2003-04-111-5/+190
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-1/+4
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-231-2/+16
* Fix SF bug #690435, apply fails to check if warning raises exceptionNeal Norwitz2003-02-231-3/+4
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-1/+3
* Change filtertuple() to use tp_as_sequence->sq_itemWalter Dörwald2003-02-101-1/+6