| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #24802: Merge null termination fixes from 3.4 into 3.5 | Martin Panter | 2015-11-07 | 1 | -16/+32 |
|\ |
|
| * | Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary | Martin Panter | 2015-11-07 | 1 | -16/+32 |
* | | Issue #24402: Merge input() fix from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -1/+3 |
|\ \
| |/ |
|
| * | Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun | Martin Panter | 2015-10-10 | 1 | -1/+3 |
* | | Specify default values of semantic booleans in Argument Clinic generated sign... | Serhiy Storchaka | 2015-05-30 | 1 | -4/+4 |
* | | Use converter names instead of format units in Argument Clinic descriptions | Serhiy Storchaka | 2015-05-30 | 1 | -72/+72 |
* | | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. | Larry Hastings | 2015-04-14 | 1 | -14/+22 |
* | | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -684/+31 |
* | | Initialize variables to prevent GCC warnings | Victor Stinner | 2015-03-18 | 1 | -1/+1 |
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-03 | 1 | -14/+22 |
|\ \
| |/ |
|
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-03 | 1 | -13/+21 |
* | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytes | Serhiy Storchaka | 2014-09-06 | 1 | -2/+2 |
* | | Issue #20184: Add signature introspection for 30 of the builtins | Nick Coghlan | 2014-08-17 | 1 | -373/+1188 |
* | | Issue #22156: Fix "comparison between signed and unsigned integers" compiler | Victor Stinner | 2014-08-15 | 1 | -1/+1 |
|/ |
|
* | Issue #22146: Fix typo in __build_class__ error message | Zachary Ware | 2014-08-05 | 1 | -1/+1 |
* | Issue #19362: Tweek len() doc and docstring to expand the indicated range of | Terry Jan Reedy | 2014-06-16 | 1 | -1/+1 |
* | Issue 20620: Update the min()/max() docs for the new default argument. | Raymond Hettinger | 2014-05-19 | 1 | -6/+10 |
* | correct len signature in docstring (closes #21294) | Benjamin Peterson | 2014-04-18 | 1 | -1/+1 |
* | Issue #20189: Four additional builtin types (PyTypeObject, | Larry Hastings | 2014-01-24 | 1 | -1/+1 |
* | merge 3.3 (#19910) | Benjamin Peterson | 2013-12-06 | 1 | -1/+1 |
|\ |
|
| * | document that compile() can take bytes (closes #19910) | Benjamin Peterson | 2013-12-06 | 1 | -1/+1 |
* | | Issue #3158: doctest can now find doctests in functions and methods | Zachary Ware | 2013-11-24 | 1 | -3/+15 |
* | | Issue #19512, #19515: remove shared identifiers, move identifiers where they | Victor Stinner | 2013-11-07 | 1 | -13/+15 |
* | | Issue #19512: builtin print() function uses an identifier instead of literal | Victor Stinner | 2013-11-07 | 1 | -1/+2 |
* | | Issue #19512: __build_class() builtin now uses an identifier for the "metacla... | Victor Stinner | 2013-11-06 | 1 | -2/+3 |
* | | Issue #19512: add some common identifiers to only create common strings once, | Victor Stinner | 2013-11-06 | 1 | -4/+4 |
* | | Issue #19512: eval() and exec() now use an identifier for "__builtins__" string | Victor Stinner | 2013-11-06 | 1 | -6/+7 |
* | | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle | Victor Stinner | 2013-10-29 | 1 | -8/+9 |
* | | Issue #1772673: The type of `char*` arguments now changed to `const char*`. | Serhiy Storchaka | 2013-10-19 | 1 | -1/+1 |
* | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
* | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | 1 | -8/+6 |
* | | Issue #18560: Fix potential NULL pointer dereference in sum() | Christian Heimes | 2013-07-26 | 1 | -30/+57 |
|\ \
| |/
|/| |
|
| * | Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError | Victor Stinner | 2013-07-16 | 1 | -0/+5 |
| * | Merge: #18424: PEP8ify the tense of the sum docstring. | R David Murray | 2013-07-10 | 1 | -2/+2 |
| |\ |
|
| * | | Issue 18111: Add a default argument to min() and max() | Raymond Hettinger | 2013-06-24 | 1 | -14/+26 |
| * | | rather than passing locals to the class body, just execute the class body in ... | Benjamin Peterson | 2013-05-16 | 1 | -1/+8 |
| * | | properly lookup the __round__ special method (closes #17722) | Benjamin Peterson | 2013-04-13 | 1 | -14/+11 |
| * | | Revert a premature patch for issue #14010 (changeset 846bd418aee5). | Serhiy Storchaka | 2013-04-06 | 1 | -21/+9 |
| |\ \ |
|
| | * | | Revert a premature patch for issue #14010 (changeset aaaf36026511). | Serhiy Storchaka | 2013-04-06 | 1 | -21/+9 |
| * | | | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -9/+21 |
| |\ \ \
| | |/ / |
|
| | * | | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -9/+21 |
| * | | | Merge | Richard Oudkerk | 2013-04-03 | 1 | -0/+1 |
| |\ \ \
| | |/ / |
|
| * | | | #17178: merge with 3.3. | Ezio Melotti | 2013-02-15 | 1 | -2/+4 |
| |\ \ \ |
|
| * | | | | compile doesn't accept code objects | Philip Jenvey | 2012-12-13 | 1 | -1/+1 |
| * | | | | initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function | Benjamin Peterson | 2012-10-30 | 1 | -0/+6 |
* | | | | | Issue #18560: Fix potential NULL pointer dereference in sum() | Christian Heimes | 2013-07-26 | 1 | -0/+5 |
| |_|_|/
|/| | | |
|
* | | | | #18424: PEP8ify the tense of the sum docstring. | R David Murray | 2013-07-10 | 1 | -2/+2 |
| |_|/
|/| | |
|
* | | | Issue #17619: Make input() check for Ctrl-C correctly on Windows. | Richard Oudkerk | 2013-04-03 | 1 | -0/+1 |
| |/
|/| |
|
* | | #17178: merge with 3.2. | Ezio Melotti | 2013-02-15 | 1 | -2/+4 |
|\ \
| |/
|/| |
|