| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ... | Christian Heimes | 2013-07-20 | 1 | -1/+1 |
|
|
* | | Issue #18408: Fix list_ass_slice(), handle list_resize() failure | Victor Stinner | 2013-07-19 | 1 | -3/+8 |
|
|
* | | Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an | Victor Stinner | 2013-07-17 | 2 | -0/+23 |
|
|
* | | Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception set | Victor Stinner | 2013-07-17 | 1 | -0/+3 |
|
|
* | | longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called on | Victor Stinner | 2013-07-17 | 1 | -1/+2 |
|
|
* | | Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLon... | Victor Stinner | 2013-07-17 | 1 | -24/+51 |
|
|
* | | Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failure | Victor Stinner | 2013-07-17 | 1 | -3/+7 |
|
|
* | | Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure | Victor Stinner | 2013-07-17 | 1 | -1/+2 |
|
|
* | | Issue #18408: Fix listpop(), handle list_ass_slice() failure | Victor Stinner | 2013-07-17 | 1 | -6/+4 |
|
|
* | | Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failure | Victor Stinner | 2013-07-17 | 1 | -11/+13 |
|
|
* | | Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in stru... | Victor Stinner | 2013-07-16 | 1 | -5/+20 |
|
|
* | | Cleanup type_call() to ease debug | Victor Stinner | 2013-07-16 | 1 | -4/+6 |
|
|
* | | Issue #18408: Py_ReprLeave() now saves/restores the current exception, | Victor Stinner | 2013-07-16 | 1 | -2/+11 |
|
|
* | | Issue #18408: dict_new() now fails on new_keys_object() error | Victor Stinner | 2013-07-16 | 1 | -10/+9 |
|
|
* | | Cleanup dictobject.c | Victor Stinner | 2013-07-16 | 1 | -17/+19 |
|
|
* | | Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() error | Victor Stinner | 2013-07-16 | 1 | -1/+3 |
|
|
* | | Issue #18408: Fix list.extend(), handle list_resize() failure | Victor Stinner | 2013-07-16 | 1 | -2/+4 |
|
|
* | | Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs | Victor Stinner | 2013-07-15 | 1 | -2/+1 |
|
|
* | | Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError | Victor Stinner | 2013-07-15 | 1 | -2/+6 |
|
|
* | | Issue #18408: Don't check unicode consistency in _PyUnicode_HAS_UTF8_MEMORY() | Victor Stinner | 2013-07-15 | 1 | -4/+2 |
|
|
* | | Issue #18408: PyObject_Call() now fails with an assertion error in debug mode | Victor Stinner | 2013-07-15 | 1 | -1/+7 |
|
|
* | | Issue #18408: pmerge() help of mro_implementation() now raises MemoryError on | Victor Stinner | 2013-07-11 | 1 | -2/+4 |
|
|
* | | Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception was | Victor Stinner | 2013-07-11 | 1 | -7/+23 |
|
|
* | | Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error | Victor Stinner | 2013-07-11 | 1 | -19/+2 |
|
|
* | | typeobject.c: remove trailing spaces | Victor Stinner | 2013-07-11 | 1 | -3/+3 |
|
|
* | | Issue #18408: Fix _PyMem_DebugRealloc() | Victor Stinner | 2013-07-08 | 1 | -6/+8 |
|
|
* | | Issue #18408: _PyUnicodeWriter_Finish() now clears its buffer attribute in all | Victor Stinner | 2013-07-08 | 1 | -3/+6 |
|
|
* | | Issue #18408: Fix _PyUnicodeWriter_Finish(): clear writer->buffer, | Victor Stinner | 2013-07-08 | 1 | -2/+5 |
|
|
* | | Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handle | Victor Stinner | 2013-07-08 | 1 | -0/+2 |
|
|
* | | Issue #18408: Fix list.pop() to handle list_resize() failure (MemoryError). | Victor Stinner | 2013-07-08 | 1 | -2/+4 |
|
|
* | | Issue #18408: Fix PyDict_New() to handle correctly new_keys_object() failure | Victor Stinner | 2013-07-08 | 1 | -1/+5 |
|
|
* | | Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() | Victor Stinner | 2013-07-07 | 1 | -0/+28 |
|
|
* | | Issue #18203: Fix _Py_DecodeUTF8_surrogateescape(), use PyMem_RawMalloc() as ... | Victor Stinner | 2013-07-07 | 1 | -2/+2 |
|
|
* | | Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCha... | Victor Stinner | 2013-07-07 | 1 | -8/+11 |
|
|
* | | Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization | Victor Stinner | 2013-07-07 | 1 | -3/+3 |
|
|
* | | Issue #3329: Fix _PyObject_ArenaVirtualFree() | Victor Stinner | 2013-07-07 | 1 | -1/+1 |
|
|
* | | Issue #3329: Implement the PEP 445 | Victor Stinner | 2013-07-07 | 2 | -169/+355 |
|
|
* | | Issue #15767: back out 8a0ed9f63c6e, finishing the removal of | Brett Cannon | 2013-07-04 | 1 | -9/+0 |
|
|
* | | Fix ref leak in error case of unicode find, count, formatlong | Christian Heimes | 2013-06-29 | 1 | -3/+11 |
|
|
* | | Fix ref leak in error case of unicode index | Christian Heimes | 2013-06-29 | 1 | -2/+6 |
|
|
* | | Fix ref leak in error case of unicode rindex and rfind | Christian Heimes | 2013-06-29 | 1 | -4/+12 |
|
|
* | | Fix memory leak in endswith | Christian Heimes | 2013-06-29 | 1 | -1/+1 |
|
|
* | | Issue #13483: Use VirtualAlloc in obmalloc on Windows. | Martin v. Löwis | 2013-06-27 | 1 | -2/+12 |
|
|
* | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. | Victor Stinner | 2013-06-24 | 1 | -1/+1 |
|
|
* | | Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index) | Victor Stinner | 2013-06-24 | 2 | -5/+5 |
|
|
* | | Issue #9566: Fix a compiler warning in tupleiter_setstate() on Windows x64 | Victor Stinner | 2013-06-24 | 1 | -1/+1 |
|
|
* | | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise | Serhiy Storchaka | 2013-06-23 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise | Serhiy Storchaka | 2013-06-23 | 1 | -2/+7 |
|
|
* | | Fix compilation warning with gcc 4.8 (unused typedef) | Antoine Pitrou | 2013-06-18 | 1 | -1/+0 |
|
|
* | | Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory ... | Victor Stinner | 2013-06-15 | 2 | -364/+157 |
|
|