Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix memory leaks and add checks for failing malloc() calls to testcapi module | Christian Heimes | 2013-07-26 | 1 | -0/+9 | |
| | | | | CID 1058288 | |||||
* | Fix possible NULL pointer dereferences in testcapi module | Christian Heimes | 2013-07-26 | 1 | -1/+7 | |
| | | | | | | CID 1058280 CID 1058282 CID 1058284 | |||||
* | Fix possible NULL pointer dereference in PyCurses_Start_Color() | Christian Heimes | 2013-07-26 | 1 | -0/+4 | |
| | | | | CID 1058276 | |||||
* | Issue #18556: Check the return value for PyUnicode_AsWideChar() in | Brett Cannon | 2013-07-25 | 2 | -1/+8 | |
| | | | | | | U_set() from ctypes. CID #486657 | |||||
* | #15130: remove repeat of abstract paragraph from socket howto body. | R David Murray | 2013-07-25 | 1 | -6/+0 | |
| | | | | Patch by Tshepang Lekhonkhobe. | |||||
* | #18503: small cleanups in test_email. | R David Murray | 2013-07-25 | 1 | -2/+2 | |
| | | | | Patch by Vajrasky Kok. | |||||
* | Issue #18549: Eliminate dead code in socket_ntohl(). | Christian Heimes | 2013-07-25 | 2 | -2/+2 | |
| | | | | CID 982369 | |||||
* | #14853: remove test that was making too many assumptions about stdin. Patch ↵ | Ezio Melotti | 2013-07-25 | 1 | -10/+0 | |
| | | | | by Elena Oat. | |||||
* | #16937: document that stdin is always buffered, even when -u is used. Patch ↵ | Ezio Melotti | 2013-07-25 | 4 | -4/+7 | |
| | | | | by Elena Oat. | |||||
* | Fix potential NULL pointer dereferencing in ast module | Christian Heimes | 2013-07-24 | 1 | -1/+1 | |
| | | | | CID 719690 | |||||
* | Issue #18541: simplified LoggerAdapter example. | Vinay Sajip | 2013-07-24 | 1 | -57/+19 | |
| | ||||||
* | return NULL here | Benjamin Peterson | 2013-07-23 | 1 | -1/+2 | |
| | ||||||
* | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 2 | -849/+566 | |
| | | | | | generate tests for different compression types. Fixed a bug with skipping some tests due to use of exhausted iterators. | |||||
* | Some compilers complain about 'control reaches end of non-void function' | Christian Heimes | 2013-07-22 | 1 | -0/+1 | |
| | | | | because they don't understand that Py_FatalError() terminates the program. | |||||
* | Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], | Christian Heimes | 2013-07-22 | 3 | -7/+19 | |
| | | | | prefix and exec_prefix if the operation system does not obey MAXPATHLEN. | |||||
* | merge | Christian Heimes | 2013-07-22 | 2 | -5/+8 | |
|\ | ||||||
| * | Issue #18439: Make patchcheck work on Windows for ACKS, NEWS. | Terry Jan Reedy | 2013-07-22 | 2 | -5/+8 | |
| | | ||||||
* | | Add sanity check to PyGrammar_LabelRepr() in order to catch invalid tokens ↵ | Christian Heimes | 2013-07-22 | 1 | -1/+4 | |
|/ | | | | | | | when debugging a new grammar. CID 715360 | |||||
* | Now all error paths of _freeze_importlib use 'goto error' and the error ↵ | Christian Heimes | 2013-07-21 | 1 | -19/+18 | |
| | | | | label cleans up all used resources. | |||||
* | fix spacing | Benjamin Peterson | 2013-07-21 | 1 | -1/+1 | |
| | ||||||
* | let's not return NULL from functions that should return ints | Benjamin Peterson | 2013-07-21 | 1 | -2/+2 | |
| | ||||||
* | Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() | Christian Heimes | 2013-07-21 | 2 | -1/+3 | |
| | ||||||
* | Fix reference and memory leaks in _freeze_importlib | Christian Heimes | 2013-07-21 | 1 | -0/+3 | |
| | ||||||
* | Check return value of lseek() in _Py_DisplaySourceLine(). | Christian Heimes | 2013-07-21 | 1 | -1/+7 | |
| | | | | | Also use portable SEEK_SET instead of 0. CID 1040639 | |||||
* | Propagate error when PyByteArray_Resize() fails in bytearray_translate() | Christian Heimes | 2013-07-21 | 1 | -1/+4 | |
| | | | | CID 715334 | |||||
* | merge | Christian Heimes | 2013-07-20 | 1 | -1/+5 | |
|\ | ||||||
| * | Issue #17532: Prevent exception when changing key sets if Options menu is empty. | Ned Deily | 2013-07-20 | 1 | -1/+5 | |
| | | ||||||
* | | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ↵ | Christian Heimes | 2013-07-20 | 1 | -0/+5 | |
|/ | | | | | | for error CID 486768 | |||||
* | Check return value of PyEval_GetGlobals() for NULL | Christian Heimes | 2013-07-20 | 1 | -2/+7 | |
| | | | | CID 486814 | |||||
* | Check return value of flush_character_buffer() | Christian Heimes | 2013-07-20 | 1 | -1/+3 | |
| | | | | CID 486663 | |||||
* | Check return value of fstat() in _PyImport_GetDynLoadFunc() | Christian Heimes | 2013-07-20 | 1 | -1/+3 | |
| | | | | CID 486250 | |||||
* | Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong ↵ | Mark Dickinson | 2013-07-20 | 2 | -0/+10 | |
| | | | | cmath.rect(0.0,-0.0) results. | |||||
* | Add missing check of PyDict_Update()'s return value in _elementtree.c | Christian Heimes | 2013-07-20 | 1 | -1/+2 | |
| | | | | CID 719637 | |||||
* | Add missing check of PyDict_SetItem()'s return value | Christian Heimes | 2013-07-20 | 1 | -1/+4 | |
| | | | | CID 486659 | |||||
* | Check return value of PyType_Ready(&EncodingMapType) | Christian Heimes | 2013-07-20 | 1 | -1/+2 | |
| | | | | CID 486654 | |||||
* | Add missing check of PyDict_SetItem()'s return value in ↵ | Christian Heimes | 2013-07-20 | 1 | -1/+4 | |
| | | | | | | _PyImport_FindExtensionObject() CID 486649 | |||||
* | Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() | Christian Heimes | 2013-07-20 | 1 | -1/+3 | |
| | | | | CID 486647 | |||||
* | Prevent dangling threads/process warning for test_multiprocessing. | Richard Oudkerk | 2013-07-19 | 1 | -4/+7 | |
| | ||||||
* | #18480: Add missing PyType_Ready call to _elementtree extension | Ronald Oussoren | 2013-07-19 | 2 | -5/+11 | |
| | ||||||
* | Fix posix_chflags(): return_value was uninitialized when follow_symlinks=False | Victor Stinner | 2013-07-18 | 1 | -1/+1 | |
| | | | | whereas the fchmodat() function is not avaialble. | |||||
* | Issue #18266: test_largefile now works with unittest test discovery and | Serhiy Storchaka | 2013-07-17 | 2 | -63/+54 | |
| | | | | supports running only selected tests. Patch by Zachary Ware. | |||||
* | Issue #17767: test_locale now works with unittest test discovery. | Serhiy Storchaka | 2013-07-17 | 2 | -58/+39 | |
| | | | | Original patch by Zachary Ware. | |||||
* | Issue #18448: Fix a typo in Tools/demo/eiffel.py. | Serhiy Storchaka | 2013-07-16 | 2 | -1/+3 | |
| | ||||||
* | Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. | Serhiy Storchaka | 2013-07-16 | 2 | -34/+21 | |
| | | | | | Useed context managers for file I/O. Removed out-of-dated code and misleading comments. | |||||
* | Closes #18475: add unittest.main() to test_email/test_inversions. | R David Murray | 2013-07-16 | 1 | -0/+4 | |
| | | | | Patch by Vajrasky Kok. | |||||
* | Issue #17778: Fix test discovery for test_multiprocessing. (Patch by | Richard Oudkerk | 2013-07-16 | 2 | -122/+107 | |
| | | | | Zachary Ware.) | |||||
* | move declaration to top of block | Benjamin Peterson | 2013-07-16 | 1 | -1/+2 | |
| | ||||||
* | check the return value of new_string() (closes #18470) | Benjamin Peterson | 2013-07-16 | 1 | -36/+46 | |
| | ||||||
* | Issue #18471: Fix typo in heapq documentation (reported by François Pinard). | Ned Deily | 2013-07-16 | 1 | -1/+1 | |
| | ||||||
* | - Issue #18440: Clarify that `hash()` can truncate the value returned from an | Barry Warsaw | 2013-07-15 | 3 | -8/+27 | |
| | | | | object's custom `__hash__()` method. |