summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18560: Fix potential NULL pointer dereference in sum()Christian Heimes2013-07-261-0/+5
|\
| * Issue #18560: Fix potential NULL pointer dereference in sum()Christian Heimes2013-07-261-0/+5
| |
* | Issue #18408: handle PySys_GetObject() failure, raise a RuntimeErrorVictor Stinner2013-07-161-0/+5
| |
* | Merge: #18424: PEP8ify the tense of the sum docstring.R David Murray2013-07-101-2/+2
|\ \ | |/
| * #18424: PEP8ify the tense of the sum docstring.R David Murray2013-07-101-2/+2
| |
* | Issue 18111: Add a default argument to min() and max()Raymond Hettinger2013-06-251-14/+26
| |
* | rather than passing locals to the class body, just execute the class body in ↵Benjamin Peterson2013-05-161-1/+8
| | | | | | | | the proper environment
* | properly lookup the __round__ special method (closes #17722)Benjamin Peterson2013-04-131-14/+11
| |
* | Revert a premature patch for issue #14010 (changeset 846bd418aee5).Serhiy Storchaka2013-04-061-21/+9
|\ \ | |/
| * Revert a premature patch for issue #14010 (changeset aaaf36026511).Serhiy Storchaka2013-04-061-21/+9
| |
* | Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-9/+21
|\ \ | |/ | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc).
| * Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-9/+21
| | | | | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc).
* | MergeRichard Oudkerk2013-04-031-0/+1
|\ \ | |/
| * Issue #17619: Make input() check for Ctrl-C correctly on Windows.Richard Oudkerk2013-04-031-0/+1
| |
* | #17178: merge with 3.3.Ezio Melotti2013-02-151-2/+4
|\ \ | |/
| * #17178: merge with 3.2.Ezio Melotti2013-02-151-2/+4
| |\
| | * #17178: update any()/all() docstrings to document their behavior with empty ↵Ezio Melotti2013-02-151-2/+4
| | | | | | | | | | | | iterables. Patch by Ankur Ankan.
| | * Remove unused variabile "plain" in builtin_exec.Ezio Melotti2012-11-211-2/+0
| | |
* | | compile doesn't accept code objectsPhilip Jenvey2012-12-131-1/+1
| | |
* | | initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all functionBenjamin Peterson2012-10-311-0/+6
|/ /
* | Merge 3.2.Stefan Krah2012-08-201-0/+2
|\ \ | |/
| * 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 ↵Antoine Pitrou2012-08-151-1/+3
|\ \ | |/ | | | | | | | | errors correctly. Patch by Serhiy Storchaka.
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵Antoine Pitrou2012-08-151-1/+3
| | | | | | | | | | | | errors correctly. Patch by Serhiy Storchaka.
* | Fix issue #15607: Update the print builtin function docstring with the new ↵Senthil Kumaran2012-08-101-4/+5
| | | | | | | | | | | | flush keyword. Patch contributed by Daniel Ellis.
* | Issue #15471: Don't use mutable object as default values for theBrett Cannon2012-08-061-1/+1
| | | | | | | | parameters of importlib.__import__().
* | Issue #15508: Fix the docstring for __import__ to not mention negativeBrett Cannon2012-07-301-3/+2
| | | | | | | | | | | | 'level' values and set its document default value to 0. Thanks to Arfrever Frehtes Taifersar Arahesis for filing the bug.
* | Remove outdated statementAntoine Pitrou2012-06-231-7/+1
| |
* | merge 3.2Benjamin Peterson2012-06-021-4/+2
|\ \ | |/
| * don't leak if the __class__ closure is setBenjamin Peterson2012-06-021-4/+2
| |
* | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-1/+1
| | | | | | | | | | | | | | importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__().
* | 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-121-3/+1
|\ \ | |/
| * fold into one if statementBenjamin Peterson2012-01-121-3/+1
| |
* | merge 3.2Benjamin Peterson2012-01-031-1/+1
|\ \ | |/
| * fix formattingBenjamin 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-071-1/+1
| |
* | Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicodeAntoine Pitrou2011-11-051-42/+42
|\ \ | |/ | | | | error handler in interactive mode (when calling into PyOS_Readline()).
| * Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicodeAntoine Pitrou2011-11-051-42/+41
| | | | | | | | error handler in interactive mode (when calling into PyOS_Readline()).
* | Merge 3.2 (linked to issue #1294232)Florent Xicluna2011-10-281-1/+1
|\ \ | |/
| * Remove unused variable.Florent Xicluna2011-10-281-2/+1
| |
* | Merge issue 1294232 patch from 3.2Nick Coghlan2011-10-231-3/+30
|\ \ | |/
| * Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵Nick Coghlan2011-10-231-2/+28
| | | | | | | | metaclass inheritance. Patch by Daniel Urban.
* | 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
| | | | | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
* | Implement PEP 393.Martin v. Löwis2011-09-281-18/+8
| |
* | include header with PyAST_ValidateBenjamin Peterson2011-08-131-0/+3
| |