summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Close #15415: Factor out temp dir helpers to test.supportNick Coghlan2013-07-287-54/+223
* Issue #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-284-3/+10
* Issue #18441: Make test.support.requires('gui') skip when it should.Terry Jan Reedy2013-07-281-5/+17
* doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tagVictor Stinner2013-07-281-0/+2
* add a test for issue #17669 (closes #18565)Benjamin Peterson2013-07-271-1/+40
* Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry.Terry Jan Reedy2013-07-271-1/+1
* Issue #15893: Remove dead codeVictor Stinner2013-07-271-5/+0
* Issue #15893: frozenmain.c now handles PyMem_Malloc() failureVictor Stinner2013-07-262-8/+19
* Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-263-6/+17
* Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-262-270/+135
* According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-263-6124/+6079
* Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-262-1/+3
* Issue #18560: Fix potential NULL pointer dereference in sum()Christian Heimes2013-07-262-0/+7
* Issue #18559: Fix NULL pointer dereference error in _pickle moduleChristian Heimes2013-07-262-4/+8
* 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
* remove surplus and wrong Py_DECREF() introduced in 33891989c9cfChristian Heimes2013-07-261-1/+0
* 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 dereference in PyCurses_Start_Color()Christian Heimes2013-07-261-0/+4
* Issue #18556: Check the return value for PyUnicode_AsWideChar() inBrett Cannon2013-07-252-1/+8
* #15130: remove repeat of abstract paragraph from socket howto body.R David Murray2013-07-251-6/+0
* #18503: small cleanups in test_email.R David Murray2013-07-251-2/+2
* Issue #18549: Eliminate dead code in socket_ntohl().Christian Heimes2013-07-252-2/+2
* #14853: remove test that was making too many assumptions about stdin. Patch ...Ezio Melotti2013-07-251-10/+0
* #16937: document that stdin is always buffered, even when -u is used. Patch ...Ezio Melotti2013-07-254-4/+7
* Fix potential NULL pointer dereferencing in ast moduleChristian Heimes2013-07-241-1/+1
* Issue #18541: simplified LoggerAdapter example.Vinay Sajip2013-07-241-57/+19
* return NULL hereBenjamin Peterson2013-07-231-1/+2
* Issue #17944: test_zipfile now discoverable and uses subclassing toSerhiy Storchaka2013-07-222-849/+566
* Some compilers complain about 'control reaches end of non-void function'Christian Heimes2013-07-221-0/+1
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-223-7/+19
* mergeChristian Heimes2013-07-222-5/+8
|\
| * Issue #18439: Make patchcheck work on Windows for ACKS, NEWS.Terry Jan Reedy2013-07-222-5/+8
* | Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens wh...Christian Heimes2013-07-221-1/+4
|/
* Now all error paths of _freeze_importlib use 'goto error' and the error label...Christian Heimes2013-07-211-19/+18
* fix spacingBenjamin Peterson2013-07-211-1/+1
* 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
* Fix reference and memory leaks in _freeze_importlibChristian Heimes2013-07-211-0/+3
* Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
* Propagate error when PyByteArray_Resize() fails in bytearray_translate()Christian Heimes2013-07-211-1/+4
* mergeChristian Heimes2013-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
|/
* 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 fstat() in _PyImport_GetDynLoadFunc()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-202-0/+10