summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* | 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