| Commit message (Expand) | Author | Age | Files | Lines |
* | Got rid of redundand "self" parameter declarations. | Serhiy Storchaka | 2016-05-02 | 3 | -70/+45 |
|
|
* | Fix typos. Reported by andportnoy on GitHub. | Berker Peksag | 2016-04-29 | 1 | -1/+1 |
|
|
* | Removed unused initialization and the uninteresting comment. | Raymond Hettinger | 2016-04-29 | 1 | -2/+1 |
|
|
* | Issue #26880: Removed redundant checks in set.__init__. | Serhiy Storchaka | 2016-04-29 | 1 | -3/+1 |
|
|
* | Issue #25349, #26249: Fix memleak in formatfloat() | Victor Stinner | 2016-04-26 | 1 | -0/+1 |
|
|
* | Issue #26249: Try test_capi on Windows | Victor Stinner | 2016-04-22 | 1 | -6/+7 |
|
|
* | PyMem_Malloc() now uses the fast pymalloc allocator | Victor Stinner | 2016-04-22 | 1 | -3/+3 |
|
|
* | Merge doc and comment fixes from 3.5 | Martin Panter | 2016-04-19 | 1 | -2/+2 |
|\ |
|
| * | Fix spelling (inital), grammar (may translates) in documentation, comments | Martin Panter | 2016-04-19 | 1 | -2/+2 |
|
|
* | | Don't define _PyMem_PymallocEnabled() if pymalloc is disabled | Victor Stinner | 2016-04-19 | 1 | -1/+1 |
|
|
* | | Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict. | Serhiy Storchaka | 2016-04-17 | 1 | -30/+21 |
|
|
* | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error | Serhiy Storchaka | 2016-04-17 | 3 | -3/+3 |
|\ \
| |/ |
|
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 3 | -3/+3 |
|
|
* | | merge 3.5 | Benjamin Peterson | 2016-04-16 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | fix slice cache finalization to use gc del | Benjamin Peterson | 2016-04-16 | 1 | -1/+1 |
|
|
* | | merge 3.5 (#26659) | Benjamin Peterson | 2016-04-16 | 1 | -4/+15 |
|\ \
| |/ |
|
| * | add gc support to slice (closes #26659) | Benjamin Peterson | 2016-04-16 | 1 | -4/+15 |
|
|
* | | Issue #26766: Remove redundant bytearray_format() from bytearrayobject.c | Berker Peksag | 2016-04-15 | 1 | -14/+1 |
|
|
* | | Issue #26766: Fix _PyBytesWriter_Finish() | Victor Stinner | 2016-04-15 | 1 | -1/+6 |
|
|
* | | Issue #26764: Fixed SystemError in bytes.__rmod__. | Serhiy Storchaka | 2016-04-15 | 1 | -6/+4 |
|
|
* | | Issue #15984: Merge PyUnicode doc from 3.5 | Martin Panter | 2016-04-15 | 2 | -2/+2 |
|\ \
| |/ |
|
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 2 | -2/+2 |
|
|
* | | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). | Serhiy Storchaka | 2016-04-13 | 2 | -410/+165 |
|
|
* | | Issue #26718: super.__init__ no longer leaks memory if called multiple times. | Serhiy Storchaka | 2016-04-13 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | Issue #26718: super.__init__ no longer leaks memory if called multiple times. | Serhiy Storchaka | 2016-04-13 | 1 | -3/+3 |
|
|
* | | Issue #26200: Restored more safe usages of Py_SETREF. | Serhiy Storchaka | 2016-04-11 | 1 | -2/+2 |
|\ \
| |/ |
|
* | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 6 | -11/+11 |
|\ \
| |/ |
|
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 5 | -10/+10 |
|
|
* | | Issue #17339: Improved TypeError message in bytes constructor. | Serhiy Storchaka | 2016-04-10 | 1 | -16/+15 |
|
|
* | | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 14 | -55/+55 |
|\ \
| |/ |
|
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 9 | -36/+36 |
|
|
* | | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 8 | -16/+22 |
|\ \
| |/ |
|
| * | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 8 | -16/+22 |
|
|
* | | Moved misplaced functions to the section for C API functions. | Raymond Hettinger | 2016-03-27 | 1 | -12/+12 |
|
|
* | | Responsibility for argument checking belongs in set.__init__() rather than se... | Raymond Hettinger | 2016-03-26 | 1 | -3/+0 |
|
|
* | | Speed-up construction of empty sets by approx 12-14%. | Raymond Hettinger | 2016-03-25 | 1 | -2/+3 |
|
|
* | | longobject.c: fix compilation warning on Windows 64-bit | Victor Stinner | 2016-03-23 | 1 | -1/+1 |
|
|
* | | _PyMem_DebugFree(): fix compiler warning on Windows | Victor Stinner | 2016-03-23 | 1 | -1/+1 |
|
|
* | | Optimize bytes.replace(b'', b'.') | Victor Stinner | 2016-03-21 | 2 | -18/+38 |
|
|
* | | Fail if PyMem_Malloc() is called without holding the GIL | Victor Stinner | 2016-03-16 | 1 | -7/+7 |
|
|
* | | Oops, revert unwanted change used to create an example | Victor Stinner | 2016-03-15 | 1 | -1/+0 |
|
|
* | | On memory error, dump the memory block traceback | Victor Stinner | 2016-03-15 | 2 | -0/+10 |
|
|
* | | Check the GIL in PyObject_Malloc() | Victor Stinner | 2016-03-14 | 1 | -22/+70 |
|
|
* | | Add PYTHONMALLOC env var | Victor Stinner | 2016-03-14 | 1 | -59/+132 |
|
|
* | | merge 3.5 (closes #26478) | Benjamin Peterson | 2016-03-04 | 1 | -5/+4 |
|\ \
| |/ |
|
| * | merge 3.4 (closes #26478) | Benjamin Peterson | 2016-03-04 | 1 | -5/+4 |
| |\ |
|
| | * | properly use the ObjArgs variant of CallMethod in dictview binary operations ... | Benjamin Peterson | 2016-03-04 | 1 | -5/+4 |
|
|
* | | | Merge 3.5 (issue #25888) | Yury Selivanov | 2016-03-02 | 1 | -6/+6 |
|\ \ \
| |/ / |
|
| * | | coroutines: Error when awaiting on coroutine that's being awaited | Yury Selivanov | 2016-03-02 | 1 | -6/+6 |
|
|
* | | | Merge 3.5 | Victor Stinner | 2016-03-01 | 1 | -9/+12 |
|\ \ \
| |/ / |
|