summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Recorded merge of revisions 85569-85570 via svnmerge fromVictor Stinner2010-10-191-11/+22
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1629/+1629
* Merged revisions 79393 via svnmerge fromVictor Stinner2010-03-251-1/+5
* Merged revisions 78505-78506 via svnmerge fromBenjamin Peterson2010-02-271-8/+16
* Merged revisions 76902 via svnmerge fromMark Dickinson2009-12-191-1/+1
* Merged revisions 76776 via svnmerge fromBenjamin Peterson2009-12-131-1/+5
* these builtins have to be initializedBenjamin Peterson2009-05-091-6/+0
* ignore the coding cookie in compile(), exec(), and eval() if the source is a ...Benjamin Peterson2009-03-021-7/+9
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-3/+3
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-011-20/+0
* Issue #4707: round(x, n) now returns an integer when x is an integer.Mark Dickinson2009-01-281-10/+8
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-3/+0
* Mini-optimization: use pack/unpack functions for argument tuples.Raymond Hettinger2009-01-061-3/+3
* #4826 exec() doesn't take a file object anymoreBenjamin Peterson2009-01-041-2/+2
* #4513: remove traces of zip() docstring from when it was izip().Georg Brandl2008-12-041-3/+1
* Issue 3723: Fixed initialization of subinterpretersChristian Heimes2008-10-301-1/+1
* Issue #3187: Add sys.setfilesystemencoding.Martin v. Löwis2008-10-031-3/+22
* #1688: On Windows, the input() prompt was not correctly displayed if itAmaury Forgeot d'Arc2008-09-211-2/+19
* #3706: fix error message for wrong exec() argument type. R=Guido.Georg Brandl2008-08-281-13/+9
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Merged revisions 65339-65340,65342 via svnmerge fromAmaury Forgeot d'Arc2008-08-011-2/+2
* Docstring typoMark Dickinson2008-07-051-1/+1
* #3191: fix round() docs and docstring.Georg Brandl2008-07-011-2/+2
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+15
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-3/+14
* Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,...Georg Brandl2008-06-101-2/+2
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-33/+0
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-0/+33
* Renamed PyString to PyBytesChristian Heimes2008-05-261-4/+4
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-5/+5
* Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterab...Georg Brandl2008-05-161-6/+6
* Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-...Alexandre Vassalotti2008-05-161-3/+7
* Fix nits in builtin next().Georg Brandl2008-04-301-13/+14
* Merged revisions 62039-62042 via svnmerge fromNeal Norwitz2008-03-311-17/+16
* Merged revisions 62004 via svnmerge fromMartin v. Löwis2008-03-301-13/+40
* Move itertools izip() code to builtins as zip(). Complete the renaming.Raymond Hettinger2008-03-131-9/+173
* Issues 2186 and 2187. Move map() from itertools to builtins.Raymond Hettinger2008-03-131-16/+138
* Issue 2186 and 2187. Move filter from itertools to builtins.Raymond Hettinger2008-03-131-16/+133
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-51/+6
* Make print docstring consistent with its docs.Georg Brandl2008-02-011-1/+1
* Merged revisions 60475-60479,60481-60488 via svnmerge fromChristian Heimes2008-02-011-35/+0
* Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().Raymond Hettinger2008-01-301-6/+6
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-281-2/+2
* Merged revisions 60210-60233 via svnmerge fromChristian Heimes2008-01-241-1/+6
* Replace map(None, *iterables) with zip(*iterables).Raymond Hettinger2008-01-221-1/+0
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-2/+2
* Merged revisions 59565-59594 via svnmerge fromChristian Heimes2007-12-241-8/+28
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-12/+12
* Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to...Christian Heimes2007-12-111-50/+50
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-13/+22