summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception setVictor Stinner2013-07-171-0/+3
* Issue #18408: Fix array_tolist(), handle PyList_SetItem() failureVictor Stinner2013-07-171-6/+9
* Issue #18408: Fix array_index(), handle getarrayitem() failureVictor Stinner2013-07-171-7/+26
* longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called onVictor Stinner2013-07-171-1/+2
* Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLon...Victor Stinner2013-07-171-24/+51
* Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failureVictor Stinner2013-07-171-3/+7
* Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failureVictor Stinner2013-07-171-1/+2
* Issue #18408: Fix listpop(), handle list_ass_slice() failureVictor Stinner2013-07-171-6/+4
* Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failureVictor Stinner2013-07-171-2/+5
* Issue #18408: Fix _PyImport_LoadDynamicModule(), handle PyUnicode_FromFormat(...Victor Stinner2013-07-171-0/+2
* Issue #18408: Fix ast_for_atom(), PyErr_Fetch(&type, &value, &tback) can set ...Victor Stinner2013-07-171-1/+1
* Issue #18408: Fix heapq.heappop(), handle PyList_SetSlice() failureVictor Stinner2013-07-171-1/+4
* Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone()Victor Stinner2013-07-171-0/+2
* Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failureVictor Stinner2013-07-171-11/+13
* Issue #18266: test_largefile now works with unittest test discovery andSerhiy Storchaka2013-07-172-63/+54
|\
| * Issue #18266: test_largefile now works with unittest test discovery andSerhiy Storchaka2013-07-172-63/+54
* | Issue #17767: test_locale now works with unittest test discovery.Serhiy Storchaka2013-07-172-58/+39
|\ \ | |/
| * Issue #17767: test_locale now works with unittest test discovery.Serhiy Storchaka2013-07-172-58/+39
* | Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in stru...Victor Stinner2013-07-162-5/+23
* | Issue #18408: Mention changes in Misc/NEWSVictor Stinner2013-07-161-0/+3
* | Issue #18408: Handle PyArena_AddPyObject() failure in ast.cVictor Stinner2013-07-161-5/+20
* | Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failureVictor Stinner2013-07-161-16/+20
* | Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() fa...Victor Stinner2013-07-161-1/+10
* | Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)Victor Stinner2013-07-162-6/+12
* | Issue #18408: Fix typo in build_node_tree() of the parser moduleVictor Stinner2013-07-161-1/+1
* | Cleanup type_call() to ease debugVictor Stinner2013-07-161-4/+6
* | Issue #18408: handle PySys_GetObject() failure, raise a RuntimeErrorVictor Stinner2013-07-164-9/+22
* | Issue #18408: Py_ReprLeave() now saves/restores the current exception,Victor Stinner2013-07-161-2/+11
* | Issue #18408: dict_new() now fails on new_keys_object() errorVictor Stinner2013-07-161-10/+9
* | Cleanup dictobject.cVictor Stinner2013-07-161-17/+19
* | Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() errorVictor Stinner2013-07-161-1/+3
* | Issue #18408: Fix list.extend(), handle list_resize() failureVictor Stinner2013-07-161-2/+4
* | Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant toVictor Stinner2013-07-163-2/+5
* | Issue #18408: Fix fileio_read() on _PyBytes_Resize() failureVictor Stinner2013-07-161-1/+1
* | Issue #18448: Fix a typo in Tools/demo/eiffel.py.Serhiy Storchaka2013-07-162-1/+3
|\ \ | |/
| * Issue #18448: Fix a typo in Tools/demo/eiffel.py.Serhiy Storchaka2013-07-162-1/+3
* | Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py.Serhiy Storchaka2013-07-162-34/+21
|\ \ | |/
| * Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py.Serhiy Storchaka2013-07-162-34/+21
* | Merge: Closes #18475: add unittest.main() to test_email/test_inversions.R David Murray2013-07-161-0/+4
|\ \ | |/
| * Closes #18475: add unittest.main() to test_email/test_inversions.R David Murray2013-07-161-0/+4
* | Issue #17778: Fix test discovery for test_multiprocessing. (Patch byRichard Oudkerk2013-07-162-31/+10
|\ \ | |/
| * Issue #17778: Fix test discovery for test_multiprocessing. (Patch byRichard Oudkerk2013-07-162-122/+107
* | Also remove a (broken) leaker test for the code removed in issue #18393.Ronald Oussoren2013-07-161-14/+0
* | merge 3.3Benjamin Peterson2013-07-161-1/+2
|\ \ | |/
| * move declaration to top of blockBenjamin Peterson2013-07-161-1/+2
* | merge 3.3 (closes #18470)Benjamin Peterson2013-07-161-36/+46
|\ \ | |/
| * check the return value of new_string() (closes #18470)Benjamin Peterson2013-07-161-36/+46
* | Closes #18471: Fix typo in heapq documentation (reported by François Pinard).Ned Deily2013-07-161-1/+1
|\ \ | |/
| * Issue #18471: Fix typo in heapq documentation (reported by François Pinard).Ned Deily2013-07-161-1/+1
* | Issue #18408: Fix show_warning(), clear also the exception raised byVictor Stinner2013-07-151-3/+3