summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* fold into one if statementBenjamin Peterson2012-01-121-3/+1
* fix formattingBenjamin Peterson2012-01-031-1/+1
* Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicodeAntoine Pitrou2011-11-051-42/+41
* Remove unused variable.Florent Xicluna2011-10-281-2/+1
* Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...Nick Coghlan2011-10-231-2/+28
* Removed 'or long integer' from bin, oct, and hex docstrings.Alexander Belopolsky2011-04-071-3/+3
* Merged revisions 88530 via svnmerge fromVictor Stinner2011-02-231-4/+9
* Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-041-6/+13
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+2
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* Issue #10518: Bring back the callable() builtin.Antoine Pitrou2010-11-271-0/+15
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
* Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-161-11/+22
* Since __import__ is not designed for general use, have its docstring pointBrett Cannon2010-09-271-2/+6
* Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODINGVictor Stinner2010-09-101-23/+0
* only catch AttributeError in hasattr() #9666Benjamin Peterson2010-08-241-8/+5
* Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogateVictor Stinner2010-05-191-7/+16
* Issue #8610: Load file system codec at startup, and display a fatal error onVictor Stinner2010-05-151-2/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1644/+1644
* Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encodingVictor Stinner2010-03-251-1/+5
* check PyDict_New() for errorBenjamin Peterson2010-02-271-6/+6
* only accept AttributeError as indicating no __prepare__ attribute on a metacl...Benjamin Peterson2010-02-271-2/+10
* Fix typo (reported by terlop on IRC)Mark Dickinson2009-12-191-1/+1
* Merged revisions 76534,76538,76628,76701,76774 via svnmerge fromBenjamin Peterson2009-12-131-1/+5
* Merged revisions 75714 via svnmerge fromMark Dickinson2009-10-261-0/+9
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-2/+0
* refactor logic a little when no sep or end is passedBenjamin Peterson2009-07-021-4/+10
* 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