summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.3Terry Jan Reedy2013-07-222-5/+8
|\
| * Issue #18439: Make patchcheck work on Windows for ACKS, NEWS.Terry Jan Reedy2013-07-222-5/+8
| |
* | Now all error paths of _freeze_importlib use 'goto error' and the error ↵Christian Heimes2013-07-211-19/+18
|\ \ | |/ | | | | label cleans up all used resources.
| * Now all error paths of _freeze_importlib use 'goto error' and the error ↵Christian Heimes2013-07-211-19/+18
| | | | | | | | label cleans up all used resources.
* | merge 3.3Benjamin Peterson2013-07-211-1/+1
|\ \ | |/
| * fix spacingBenjamin Peterson2013-07-211-1/+1
| |
* | merge 3.3Benjamin Peterson2013-07-211-2/+2
|\ \ | |/
| * let's not return NULL from functions that should return intsBenjamin Peterson2013-07-211-2/+2
| |
* | Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-212-1/+3
|\ \ | |/
| * Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-212-1/+3
| |
* | 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 #18520: Fix initsigs(), handle PyOS_InitInterrupts() errorVictor Stinner2013-07-211-0/+3
| | | | | | | | PyOS_InitInterrupts() can raise error when importing the signal module
* | Issue #18519, #18408: Fix sqlite authorizer callbackVictor Stinner2013-07-211-15/+23
| | | | | | | | | | If a previous call to the authorizer callback failed and raised an exception, don't call the Python authorizer callback, but just return SQLITE_DENY.
* | Minor code simplification by eliminating an unnecessary temporary variable.Raymond Hettinger2013-07-211-12/+6
| |
* | Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
|\ \ | |/ | | | | | | Also use portable SEEK_SET instead of 0. CID 1040639
| * Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
| | | | | | | | | | Also use portable SEEK_SET instead of 0. CID 1040639
* | Propagate error when PyByteArray_Resize() fails in bytearray_translate()Christian Heimes2013-07-211-1/+4
|\ \ | |/ | | | | CID 715334
| * Propagate error when PyByteArray_Resize() fails in bytearray_translate()Christian Heimes2013-07-211-1/+4
| | | | | | | | CID 715334
* | mergeChristian Heimes2013-07-200-0/+0
|\ \ | |/
| * mergeChristian Heimes2013-07-201-1/+5
| |\
* | \ mergeChristian Heimes2013-07-201-1/+5
|\ \ \
| * \ \ Issue #17532: merge from 3.3Ned Deily2013-07-201-1/+5
| |\ \ \ | | | |/ | | |/|
| | * | Issue #17532: Prevent exception when changing key sets if Options menu is empty.Ned Deily2013-07-201-1/+5
| | | |
* | | | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ↵Christian Heimes2013-07-201-0/+5
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | | | for error CID 486768
| * | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ↵Christian Heimes2013-07-201-0/+5
| |/ | | | | | | | | | | for error CID 486768
* | Check return value of PyEval_GetGlobals() for NULLChristian Heimes2013-07-201-2/+7
|\ \ | |/ | | | | CID 486814
| * Check return value of PyEval_GetGlobals() for NULLChristian Heimes2013-07-201-2/+7
| | | | | | | | CID 486814
* | Check return value of flush_character_buffer()Christian Heimes2013-07-201-1/+3
|\ \ | |/ | | | | CID 486663
| * Check return value of flush_character_buffer()Christian Heimes2013-07-201-1/+3
| | | | | | | | CID 486663
* | Check return value of fstat() in _PyImport_GetDynLoadFunc()Christian Heimes2013-07-201-1/+3
|\ \ | |/ | | | | CID 486250
| * Check return value of fstat() in _PyImport_GetDynLoadFunc()Christian Heimes2013-07-201-1/+3
| | | | | | | | CID 486250
* | test_ssl: use a bytestring hereAntoine Pitrou2013-07-201-1/+1
| |
* | Issue #9177: Calling read() or write() now raises ValueError, not ↵Antoine Pitrou2013-07-204-0/+23
| | | | | | | | | | | | AttributeError, on a closed SSL socket. Patch by Senko Rasic.
* | Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong ↵Mark Dickinson2013-07-202-0/+10
|\ \ | |/ | | | | cmath.rect(0.0,-0.0) results.
| * Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong ↵Mark Dickinson2013-07-202-0/+10
| | | | | | | | cmath.rect(0.0,-0.0) results.
* | Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2
|\ \ | |/ | | | | CID 719637
| * Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2
| | | | | | | | CID 719637
* | Add missing check of PyDict_SetItem()'s return valueChristian Heimes2013-07-201-1/+4
|\ \ | |/ | | | | CID 486659
| * Add missing check of PyDict_SetItem()'s return valueChristian Heimes2013-07-201-1/+4
| | | | | | | | CID 486659
* | Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
|\ \ | |/ | | | | CID 486654
| * Check return value of PyType_Ready(&EncodingMapType)Christian Heimes2013-07-201-1/+2
| | | | | | | | CID 486654
* | Add missing check of PyDict_SetItem()'s return value in ↵Christian Heimes2013-07-201-1/+4
|\ \ | |/ | | | | | | | | _PyImport_FindExtensionObject() CID 486649
| * Add missing check of PyDict_SetItem()'s return value in ↵Christian Heimes2013-07-201-1/+4
| | | | | | | | | | | | _PyImport_FindExtensionObject() CID 486649
* | Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
|\ \ | |/ | | | | CID 486647
| * Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()Christian Heimes2013-07-201-1/+3
| | | | | | | | CID 486647
* | Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ↵Christian Heimes2013-07-201-1/+1
| | | | | | | | | | | | newto, attr). The fix only affects the error message of __class__ assignment. CID 983564
* | Fix fishy sizeof(Py_ssize_t *).Christian Heimes2013-07-201-1/+1
| | | | | | | | | | sizeof(Py_ssize_t *) == sizeof(Py_ssize_t) but it's not a portable assumption. CID 486403
* | Use strncat() instead of strcat() to silence some warnings.Christian Heimes2013-07-201-3/+3
| | | | | | | | CID 486616, CID 486617, CID 486615
* | Make the GCC-4.8 compiler happy by moving declarations to the top of the ↵Raymond Hettinger2013-07-202-9/+13
| | | | | | | | function.