summaryrefslogtreecommitdiff
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merge 3.2.Stefan Krah2012-08-201-78/+133
|\
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+3
| |\
| * | Fix issue #15607: Update the print builtin function docstring with the new fl...Senthil Kumaran2012-08-101-4/+5
| * | Issue #15471: Don't use mutable object as default values for theBrett Cannon2012-08-061-1/+1
| * | Issue #15508: Fix the docstring for __import__ to not mention negativeBrett Cannon2012-07-301-3/+2
| * | Remove outdated statementAntoine Pitrou2012-06-231-7/+1
| * | merge 3.2Benjamin Peterson2012-06-011-4/+2
| |\ \
| * | | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-1/+1
| * | | Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-3/+53
| * | | Closes #13761: add a "flush" keyword argument to print().Georg Brandl2012-01-131-5/+19
| * | | merge 3.2Benjamin Peterson2012-01-111-3/+1
| |\ \ \
| * \ \ \ merge 3.2Benjamin Peterson2012-01-031-1/+1
| |\ \ \ \
| * | | | | Remove "#ifdef Py_UNICODE_WIDE": Python is now always wideVictor Stinner2011-11-221-9/+2
| * | | | | quote the type name for improved readabilityPhilip Jenvey2011-11-061-1/+1
| * | | | | Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicodeAntoine Pitrou2011-11-061-42/+42
| |\ \ \ \ \
| * \ \ \ \ \ Merge 3.2 (linked to issue #1294232)Florent Xicluna2011-10-281-1/+1
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge issue 1294232 patch from 3.2Nick Coghlan2011-10-231-44/+46
| |\ \ \ \ \ \ \
| | * | | | | | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-6/+6
| | * | | | | | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-5/+9
| | * | | | | | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-5/+8
| | * | | | | | | Implement PEP 393.Martin v. Löwis2011-09-281-18/+8
| | * | | | | | | include header with PyAST_ValidateBenjamin Peterson2011-08-121-0/+3
| | * | | | | | | add a AST validator (closes #12575)Benjamin Peterson2011-08-091-0/+4
| | * | | | | | | plug refleakBenjamin Peterson2011-07-291-0/+1
| | * | | | | | | bytes -> bytearrayBenjamin Peterson2011-07-291-1/+1
| | * | | | | | | bytes should be verboten in sum() (fixes #12654)Benjamin Peterson2011-07-291-0/+5
| | * | | | | | | Issue #9642: Uniformize the tests on the availability of the mbcs codecVictor Stinner2011-07-041-1/+1
| | * | | | | | | Issue #9642: Fix filesystem encoding initialization: use the ANSI code page onVictor Stinner2011-07-041-4/+1
| | * | | | | | | Removed 'or long integer' from bin, oct, and hex docstrings.Alexander Belopolsky2011-04-071-12/+6
| | |\ \ \ \ \ \ \
| | | * | | | | | | Issue #3080: Add PyImport_ImportModuleLevelObject() functionVictor Stinner2011-03-141-7/+4
| | | * | | | | | | Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-021-1/+1
| | | * | | | | | | Issue #11272: Fix input() and sys.stdin for Windows newlineVictor Stinner2011-02-231-4/+9
| | | * | | | | | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-4/+1
* | | | | | | | | | Issue #15741: Fix potential NULL dereference. Found by Coverity.Stefan Krah2012-08-201-0/+2
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+3
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | don't leak if the __class__ closure is setBenjamin Peterson2012-06-011-4/+2
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | fold into one if statementBenjamin Peterson2012-01-111-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-061-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