summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #2719: backport next() from 3k.Georg Brandl2008-04-301-0/+42
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-6/+6
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-25/+13
* Properly check for consistency with the third argument ofGeorg Brandl2008-03-291-16/+16
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-281-19/+44
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+8
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-6/+10
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-7/+0
* Backport of the print function, using a __future__ import.Eric Smith2008-03-181-0/+73
* Added a warning when -3 is enabled and None is passed to filter as the first ...David Wolever2008-03-181-0/+7
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-181-0/+1
* Add a little info to the 3k deprecation warnings about what to use instead.Neal Norwitz2008-02-241-4/+4
* map(None, ...) is not supported in 3.0.Neal Norwitz2008-02-241-3/+9
* Added bin() builtin. I'm going to check in the tests in a seperate checkin, ...Eric Smith2008-02-221-0/+13
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+19
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-15/+0
* CallMethod is faster with a NULL third-argument than with an empty format str...Raymond Hettinger2008-01-291-1/+1
* Fix two crashers.Guido van Rossum2008-01-231-1/+6
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-181-0/+1
* Fix C++-style comment.Georg Brandl2008-01-051-3/+3
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-17/+25
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-23/+30
* Improve performance of built-in any()/all() by avoiding PyIter_Next() --Guido van Rossum2007-12-201-8/+28
* Note that open() is the preferred way to open files (issue 1510).Skip Montanaro2007-12-081-1/+2
* Fix Issue 1045.Raymond Hettinger2007-12-061-24/+3
* Missing DECREFsRaymond Hettinger2007-10-251-0/+2
* Fixup error return and add support for intermixed ints and floats/Raymond Hettinger2007-10-241-1/+7
* Optimize sum() for integer and float inputs.Raymond Hettinger2007-10-241-0/+70
* Add a bunch more deprecation warnings for builtins that are going away in 3.0Neal Norwitz2007-05-231-0/+24
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-0/+5
* Patch #1444529: the builtin compile() now accepts keyword arguments.Georg Brandl2007-03-131-4/+7
* Typo and grammar fixes.Georg Brandl2007-03-131-1/+1
* Backport from Py3k branch:Georg Brandl2007-03-121-9/+10
* Bug #1283491: follow docstring convention wrt. keyword-able args in sum().Georg Brandl2006-10-121-2/+3
* Fix SF #1552093, eval docstring typo (3 ps in mapping)Neal Norwitz2006-09-051-1/+1
* It's highly unlikely, though possible for PyEval_Get*() to return NULLs.Neal Norwitz2006-08-121-2/+2
* Bug #1535165: fixed a segfault in input() and raw_input() whenGeorg Brandl2006-08-061-1/+1
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-4/+14
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-3/+2
* Accept keyword arguments for __import__ and doc the addition of the level par...Neal Norwitz2006-04-031-6/+11
* Patch #1460496: round() now accepts keyword arguments.Georg Brandl2006-03-311-13/+15
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-1/+1
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-3/+5
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-1/+1
* Fix compiler warning (int vs Py_ssize_t mismatchNeal Norwitz2006-02-191-1/+1
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-15/+15
* Merge ssize_t branch.Martin v. Löwis2006-02-151-9/+9
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-3/+3
* Fix an int/long mismatch identified here:Neal Norwitz2005-12-151-1/+2