summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Restore the data block size to 62.Raymond Hettinger2013-07-281-3/+6
* Assertions key off NDEBUGRaymond Hettinger2013-07-271-1/+1
* Issue #15893: Improve error handling in main() and Py_FrozenMain()Victor Stinner2013-07-271-0/+5
* Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
|\
| * Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
* | Issue #18559: Fix NULL pointer dereference error in _pickle moduleChristian Heimes2013-07-261-4/+6
|\ \ | |/
| * Issue #18559: Fix NULL pointer dereference error in _pickle moduleChristian Heimes2013-07-261-4/+6
* | Issue #18519: the Python authorizer callback of sqlite3 must not raise Python...Victor Stinner2013-07-261-21/+20
* | Handle yet another potential failure in testcapiChristian Heimes2013-07-261-0/+2
|\ \ | |/
| * Handle yet another potential failure in testcapiChristian Heimes2013-07-261-0/+2
* | Check return value of PyLong_FromLong(X509_get_version()). It might be NULL ifChristian Heimes2013-07-261-0/+2
|\ \ | |/
| * Check return value of PyLong_FromLong(X509_get_version()). It might be NULL ifChristian Heimes2013-07-261-0/+2
* | remove surplus and wrong Py_DECREF() introduced in 33891989c9cfChristian Heimes2013-07-261-1/+0
|\ \ | |/
| * remove surplus and wrong Py_DECREF() introduced in 33891989c9cfChristian Heimes2013-07-261-1/+0
* | Fix memory leaks and add checks for failing malloc() calls to testcapi moduleChristian Heimes2013-07-261-3/+16
|\ \ | |/
| * Fix declaration-after-statement of d49f65ff4f3cChristian Heimes2013-07-261-3/+7
| * Fix memory leaks and add checks for failing malloc() calls to testcapi moduleChristian Heimes2013-07-261-0/+9
* | Fix possible NULL pointer dereferences in testcapi moduleChristian Heimes2013-07-261-1/+7
|\ \ | |/
| * Fix possible NULL pointer dereferences in testcapi moduleChristian Heimes2013-07-261-1/+7
* | Fix possible NULL pointer dereference in PyCurses_Start_Color()Christian Heimes2013-07-261-0/+4
|\ \ | |/
| * Fix possible NULL pointer dereference in PyCurses_Start_Color()Christian Heimes2013-07-261-0/+4
* | merge for issue #18556Brett Cannon2013-07-251-1/+5
|\ \ | |/
| * Issue #18556: Check the return value for PyUnicode_AsWideChar() inBrett Cannon2013-07-251-1/+5
* | Issue #18549: Eliminate dead code in socket_ntohl().Christian Heimes2013-07-251-2/+0
|\ \ | |/
| * Issue #18549: Eliminate dead code in socket_ntohl().Christian Heimes2013-07-251-2/+0
* | #16937: merge with 3.3.Ezio Melotti2013-07-251-1/+2
|\ \ | |/
| * #16937: document that stdin is always buffered, even when -u is used. Patch ...Ezio Melotti2013-07-251-1/+2
* | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-228-28/+51
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-4/+12
|\ \ | |/
| * Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-4/+12
* | Issue #18488: Fix _pysqlite_final_callback()Victor Stinner2013-07-221-4/+4
* | Now all error paths of _freeze_importlib use 'goto error' and the error label...Christian Heimes2013-07-211-19/+18
|\ \ | |/
| * Now all error paths of _freeze_importlib use 'goto error' and the error label...Christian Heimes2013-07-211-19/+18
* | Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
|\ \ | |/
| * Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
* | Fix reference and memory leaks in _freeze_importlibChristian Heimes2013-07-211-0/+3
|\ \ | |/
| * Fix reference and memory leaks in _freeze_importlibChristian Heimes2013-07-211-0/+3
* | Issue #18519, #18408: Fix sqlite authorizer callbackVictor Stinner2013-07-211-15/+23
* | Minor code simplification by eliminating an unnecessary temporary variable.Raymond Hettinger2013-07-211-12/+6
* | Check return value of PyEval_GetGlobals() for NULLChristian Heimes2013-07-201-2/+7
|\ \ | |/
| * Check return value of PyEval_GetGlobals() for NULLChristian Heimes2013-07-201-2/+7
* | Check return value of flush_character_buffer()Christian Heimes2013-07-201-1/+3
|\ \ | |/
| * Check return value of flush_character_buffer()Christian Heimes2013-07-201-1/+3
* | Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath...Mark Dickinson2013-07-201-0/+7
|\ \ | |/
| * Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath...Mark Dickinson2013-07-201-0/+7
* | 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
* | Fix fishy sizeof(Py_ssize_t *).Christian Heimes2013-07-201-1/+1