summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #9177: Calling read() or write() now raises ValueError, not AttributeEr...Antoine Pitrou2013-07-204-0/+23
* | Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath...Mark Dickinson2013-07-202-0/+10
|\ \ | |/
| * Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath...Mark Dickinson2013-07-202-0/+10
* | Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2
|\ \ | |/
| * Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2
* | Add missing check of PyDict_SetItem()'s return valueChristian Heimes2013-07-201-1/+4
|\ \ | |/
| * Add missing check of PyDict_SetItem()'s return valueChristian Heimes2013-07-201-1/+4
* | Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
|\ \ | |/
| * Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
* | Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensi...Christian Heimes2013-07-201-1/+4
|\ \ | |/
| * Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensi...Christian Heimes2013-07-201-1/+4
* | Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
|\ \ | |/
| * Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
* | Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ...Christian Heimes2013-07-201-1/+1
* | Fix fishy sizeof(Py_ssize_t *).Christian Heimes2013-07-201-1/+1
* | Use strncat() instead of strcat() to silence some warnings.Christian Heimes2013-07-201-3/+3
* | Make the GCC-4.8 compiler happy by moving declarations to the top of the func...Raymond Hettinger2013-07-202-9/+13
* | Change _names to _names_ since the latter is reserved for Enum use.Ethan Furman2013-07-202-41/+42
* | Close #18508 -- fix _value2member_map to always have the member's valueEthan Furman2013-07-202-11/+31
* | Merge.Richard Oudkerk2013-07-191-4/+7
|\ \ | |/
| * Prevent dangling threads/process warning for test_multiprocessing.Richard Oudkerk2013-07-191-4/+7
* | Issue #18408: Fix list_ass_slice(), handle list_resize() failureVictor Stinner2013-07-191-3/+8
* | Closes #18479: Changed venv Activate.ps1 to make deactivate a function, and r...Vinay Sajip2013-07-193-34/+33
* | (3.3->default): #18480: Add missing PyType_Ready call to _elementtree extensionRonald Oussoren2013-07-192-5/+11
|\ \ | |/
| * #18480: Add missing PyType_Ready call to _elementtree extensionRonald Oussoren2013-07-192-5/+11
* | closes issue18042 -- a `unique` decorator is added to enum.pyEthan Furman2013-07-193-29/+115
* | (Merge 3.3) Fix posix_chflags(): return_value was uninitialized whenVictor Stinner2013-07-181-1/+1
|\ \ | |/
| * Fix posix_chflags(): return_value was uninitialized when follow_symlinks=FalseVictor Stinner2013-07-181-1/+1
* | Issue #18501, #18408: Fix expat handlers in pyexpat, don't call PythonVictor Stinner2013-07-181-0/+15
* | Issue #18408: Fix _elementtree.c, don't call Python function from an expatVictor Stinner2013-07-181-0/+28
* | Fix a compiler warning on FreeBSDVictor Stinner2013-07-181-2/+3
* | Issue #18408: Fix PyInit__curses_panel(), handle import_curses() failureVictor Stinner2013-07-181-0/+2
* | Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with anVictor Stinner2013-07-172-0/+23
* | Issue #18408: Fix _pysqlite_fetch_one_row(), in debug mode, don't callVictor Stinner2013-07-171-0/+5
* | Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now failVictor Stinner2013-07-173-0/+42
* | Issue #18488: _pysqlite_final_callback() should not clear the exception set byVictor Stinner2013-07-171-0/+9
* | 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