| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a memory leak in split-table dictionaries | Victor Stinner | 2016-12-15 | 1 | -0/+14 |
* | Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT... | Serhiy Storchaka | 2016-11-16 | 1 | -1/+1 |
|\ |
|
| * | Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT... | Serhiy Storchaka | 2016-11-16 | 1 | -1/+1 |
* | | Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as | Serhiy Storchaka | 2016-11-06 | 1 | -0/+21 |
* | | Merge from 3.5. | Serhiy Storchaka | 2016-10-08 | 1 | -0/+34 |
|\ \
| |/ |
|
| * | Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). | Serhiy Storchaka | 2016-10-08 | 1 | -0/+34 |
* | | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). | Serhiy Storchaka | 2016-10-02 | 1 | -72/+215 |
|\ \
| |/
|/| |
|
| * | Add a new private version to the builtin dict type | Victor Stinner | 2016-09-08 | 1 | -0/+16 |
| * | make sure expected values are interpreted as doubles | Benjamin Peterson | 2016-09-07 | 1 | -1/+1 |
| * | replace Py_(u)intptr_t with the c99 standard types | Benjamin Peterson | 2016-09-06 | 1 | -8/+8 |
| * | replace Python aliases for standard integer types with the standard integer t... | Benjamin Peterson | 2016-09-06 | 1 | -8/+8 |
| * | require standard int types to be defined (#17884) | Benjamin Peterson | 2016-09-06 | 1 | -8/+0 |
| * | replace PY_LONG_LONG with long long | Benjamin Peterson | 2016-09-06 | 1 | -19/+19 |
| * | Avoid calling functions with an empty string as format string | Victor Stinner | 2016-09-05 | 1 | -2/+2 |
| * | require a long long data type (closes #27961) | Benjamin Peterson | 2016-09-05 | 1 | -26/+2 |
| * | Issue #27895: Spelling fixes (Contributed by Ville Skytt?). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
| * | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support | Serhiy Storchaka | 2016-06-09 | 1 | -0/+18 |
| * | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" | Serhiy Storchaka | 2016-05-20 | 1 | -5/+146 |
| |\ |
|
| | * | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codes | Serhiy Storchaka | 2016-05-16 | 1 | -0/+63 |
| | |\ |
|
| | * | | Issue #18531: Single var-keyword argument of dict subtype was passed | Serhiy Storchaka | 2016-05-08 | 1 | -0/+22 |
| | * | | Issue #26588: remove debug traces from _tracemalloc. | Victor Stinner | 2016-03-22 | 1 | -14/+0 |
| | * | | Issue #26588: add debug traces | Victor Stinner | 2016-03-22 | 1 | -0/+14 |
| | * | | Add C functions _PyTraceMalloc_Track() | Victor Stinner | 2016-03-22 | 1 | -0/+75 |
| | * | | Fail if PyMem_Malloc() is called without holding the GIL | Victor Stinner | 2016-03-16 | 1 | -0/+19 |
| | * | | Check the GIL in PyObject_Malloc() | Victor Stinner | 2016-03-14 | 1 | -0/+15 |
| | * | | Add PYTHONMALLOC env var | Victor Stinner | 2016-03-14 | 1 | -0/+29 |
| | * | | Issue #26198: Added tests for "es", "et", "es#", "et#" and "C" format units | Serhiy Storchaka | 2016-01-28 | 1 | -1/+93 |
| | |\ \ |
|
| | * | | | Fix indentation of continuation lines. | Georg Brandl | 2016-01-18 | 1 | -2/+2 |
| | * | | | Issue #25923: Added the const qualifier to static constant arrays. | Serhiy Storchaka | 2015-12-25 | 1 | -2/+2 |
| | * | | | Merge 3.5 (sys.setrecursionlimit) | Victor Stinner | 2015-10-13 | 1 | -1/+4 |
| | |\ \ \ |
|
| | | * | | | Fix test_time on platform with 32-bit time_t type | Victor Stinner | 2015-09-10 | 1 | -0/+1 |
| | | * | | | Issue #23517: fromtimestamp() and utcfromtimestamp() methods of | Victor Stinner | 2015-09-09 | 1 | -1/+1 |
| | | * | | | Issue #23517: Add "half up" rounding mode to the _PyTime API | Victor Stinner | 2015-09-02 | 1 | -1/+3 |
* | | | | | | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). | Serhiy Storchaka | 2016-10-02 | 1 | -0/+31 |
* | | | | | | Issue #27895: Spelling fixes (Contributed by Ville Skytt?). | Martin Panter | 2016-09-07 | 1 | -1/+1 |
|/ / / / / |
|
* | | | | | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" | Serhiy Storchaka | 2016-05-20 | 1 | -0/+95 |
| |_|_|/
|/| | | |
|
* | | | | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codes | Serhiy Storchaka | 2016-05-16 | 1 | -0/+63 |
* | | | | Backported tests for issue #18531. | Serhiy Storchaka | 2016-05-16 | 1 | -0/+22 |
| |_|/
|/| | |
|
* | | | Issue #26198: Added tests for "es", "et", "es#", "et#" and "C" format units | Serhiy Storchaka | 2016-01-28 | 1 | -1/+93 |
|/ / |
|
* | | sys.setrecursionlimit() now raises RecursionError | Victor Stinner | 2015-10-13 | 1 | -0/+10 |
|/ |
|
* | Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). | Antoine Pitrou | 2015-06-23 | 1 | -0/+13 |
|\ |
|
| * | Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). | Antoine Pitrou | 2015-06-23 | 1 | -0/+13 |
* | | Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. | Yury Selivanov | 2015-05-28 | 1 | -1/+1 |
* | | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 1 | -0/+3 |
* | | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-11 | 1 | -0/+97 |
* | | Issue #20586: Argument Clinic now ensures signatures on functions without doc... | Zachary Ware | 2015-04-13 | 1 | -0/+9 |
* | | Issue #22117: Add a new _PyTime_FromSeconds() function | Victor Stinner | 2015-04-03 | 1 | -0/+13 |
* | | Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and | Victor Stinner | 2015-04-01 | 1 | -0/+38 |
* | | Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods | Victor Stinner | 2015-03-30 | 1 | -2/+1 |
* | | Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps | Victor Stinner | 2015-03-30 | 1 | -1/+1 |