summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #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
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-15/+15
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Partial fix for bug #1306Christian Heimes2007-11-301-0/+3
* Fixed bug in input() which broke pdbChristian Heimes2007-11-251-1/+1
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-3/+3
* Another #1415 fix for Windows GUI appsChristian Heimes2007-11-131-2/+6
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+2
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-0/+78
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+8
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-0/+3
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-2/+1
* Decode input() with stdin.encoding. Fixes #1097.Martin v. Löwis2007-09-041-2/+17
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-1/+1
* Remove chr8, we're not likely to need it at this pointNeal Norwitz2007-08-311-26/+1
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-311-12/+23
* Added test to ensure __format__ methods return unicode objects.Eric Smith2007-08-271-4/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-271-7/+5
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-20/+8
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+56
* Before calling _PyType_Lookup() the type needs to be initialized.Guido van Rossum2007-08-241-0/+10
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-50/+38
* Implement the round functionality for PEP 3141, and add tests for it.Alex Martelli2007-08-221-2/+26