- 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
- de0e63b Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
- 60a6067 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
- 3a85732 Issue #18488: Fix _pysqlite_final_callback() by Victor Stinner · 11 years ago
- e5378e2 Now all error paths of _freeze_importlib use 'goto error' and the error label cleans up all used resources. by Christian Heimes · 11 years ago
- 43d82df Now all error paths of _freeze_importlib use 'goto error' and the error label cleans up all used resources. by Christian Heimes · 11 years ago
- 7194588 Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() by Christian Heimes · 11 years ago
- 8c4c1f6 Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() by Christian Heimes · 11 years ago
- 992fe2a Fix reference and memory leaks in _freeze_importlib by Christian Heimes · 11 years ago
- 96f628f Fix reference and memory leaks in _freeze_importlib by Christian Heimes · 11 years ago
- 41801f5 Issue #18519, #18408: Fix sqlite authorizer callback by Victor Stinner · 11 years ago
- b97cc49 Minor code simplification by eliminating an unnecessary temporary variable. by Raymond Hettinger · 11 years ago
- 603bd2d Check return value of PyEval_GetGlobals() for NULL CID 486814 by Christian Heimes · 11 years ago
- a6404ad Check return value of PyEval_GetGlobals() for NULL CID 486814 by Christian Heimes · 11 years ago
- 5df8ff0 Check return value of flush_character_buffer() CID 486663 by Christian Heimes · 11 years ago
- 09994a9 Check return value of flush_character_buffer() CID 486663 by Christian Heimes · 11 years ago
- 60d634a Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath.rect(0.0,-0.0) results. by Mark Dickinson · 11 years ago
- 58ceecf Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath.rect(0.0,-0.0) results. by Mark Dickinson · 11 years ago
- 2ef710e Add missing check of PyDict_Update()'s return value in _elementtree.c CID 719637 by Christian Heimes · 11 years ago
- 7ed4294 Add missing check of PyDict_Update()'s return value in _elementtree.c CID 719637 by Christian Heimes · 11 years ago
- 3f95bdc Add missing check of PyDict_SetItem()'s return value CID 486659 by Christian Heimes · 11 years ago
- 97cb67b Add missing check of PyDict_SetItem()'s return value CID 486659 by Christian Heimes · 11 years ago
- abfc4d8 Fix fishy sizeof(Py_ssize_t *). by Christian Heimes · 11 years ago
- e91ad50 Use strncat() instead of strcat() to silence some warnings. by Christian Heimes · 11 years ago
- 5ea0f80 Make the GCC-4.8 compiler happy by moving declarations to the top of the function. by Raymond Hettinger · 11 years ago
- ced1226 (3.3->default): #18480: Add missing PyType_Ready call to _elementtree extension by Ronald Oussoren · 11 years ago
- 138d080 #18480: Add missing PyType_Ready call to _elementtree extension by Ronald Oussoren · 11 years ago
- d85032e (Merge 3.3) Fix posix_chflags(): return_value was uninitialized when by Victor Stinner · 11 years ago
- 45e9039 Fix posix_chflags(): return_value was uninitialized when follow_symlinks=False by Victor Stinner · 11 years ago
- 9e09c26 Issue #18501, #18408: Fix expat handlers in pyexpat, don't call Python by Victor Stinner · 11 years ago
- 3fd8cbd Issue #18408: Fix _elementtree.c, don't call Python function from an expat by Victor Stinner · 11 years ago
- ca713c0 Fix a compiler warning on FreeBSD by Victor Stinner · 11 years ago
- 569f364 Issue #18408: Fix PyInit__curses_panel(), handle import_curses() failure by Victor Stinner · 11 years ago
- 4abda5d Issue #18408: Fix _pysqlite_fetch_one_row(), in debug mode, don't call by Victor Stinner · 11 years ago
- ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 11 years ago
- e9af4cf Issue #18488: _pysqlite_final_callback() should not clear the exception set by by Victor Stinner · 11 years ago
- 4755bea Issue #18408: Fix array_tolist(), handle PyList_SetItem() failure by Victor Stinner · 11 years ago
- 0b142e2 Issue #18408: Fix array_index(), handle getarrayitem() failure by Victor Stinner · 11 years ago
- 764a46d Issue #18408: Fix heapq.heappop(), handle PyList_SetSlice() failure by Victor Stinner · 11 years ago
- 2ff51b8 Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() by Victor Stinner · 11 years ago
- d594f24 Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
- 6684bdf Issue #18408: Fix typo in build_node_tree() of the parser module by Victor Stinner · 11 years ago
- 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
- d1f9942 Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to by Victor Stinner · 11 years ago
- 85c761d Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure by Victor Stinner · 11 years ago
- a4ced86 Issue #18408: random_seed() now raises a MemoryError on memory allocation by Victor Stinner · 11 years ago
- 33283ba Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure by Victor Stinner · 11 years ago
- 54b2d2e Issue #18408: Fix pyexpat.ParserCreate() by Victor Stinner · 11 years ago
- 0fedb37 Issue #18393: Remove use of deprecated API on OSX by Ronald Oussoren · 11 years ago
- 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
- 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
- 90dea4c Tweak the deque struct by moving the least used fields (maxlen and weakref) to the end. by Raymond Hettinger · 11 years ago
- 840533b Use a do-while loop in the inner loop for rotate (m is always greater than zero). by Raymond Hettinger · 11 years ago
- 3959af9 Move the freeblock() call outside the main loop to speed-up and simplify the block re-use logic. by Raymond Hettinger · 11 years ago
- d917dcb Issue #18408: Fix constructors of _elementtree.c by Victor Stinner · 11 years ago
- 81aac73 Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memory by Victor Stinner · 11 years ago
- df4572c Issue #18408: parser module: fix error handling in node2tuple() by Victor Stinner · 11 years ago
- 3bd6abd Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryError by Victor Stinner · 11 years ago
- 4202456 Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation failures by Victor Stinner · 11 years ago
- 8ca72e2 Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if by Victor Stinner · 11 years ago
- c31df04 Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroy by Victor Stinner · 11 years ago
- 71c8b7e Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryError by Victor Stinner · 11 years ago
- 4d46343 Cleanup _elementtree.c by Victor Stinner · 11 years ago
- 5f0af23 Issue #18408: _elementtree.c now handles create_extra() failure by Victor Stinner · 11 years ago
- 68c8ea2 Issue #18408: Fix _Pickler_New() and _Unpickler_New(): initialize all by Victor Stinner · 11 years ago
- 50ae3f6 Issue #18101: Tcl.split() now process strings nested in a tuple as it by Serhiy Storchaka · 11 years ago
- 275d5fd Issue #18101: Tcl.split() now process strings nested in a tuple as it by Serhiy Storchaka · 11 years ago
- e3ed4ed Issue #18338: `python --version` now prints version string to stdout, and by Serhiy Storchaka · 11 years ago
- 609142e Merge: #18399: fix comment typo. by R David Murray · 11 years ago
- 296b73c #18399: fix comment typo. by R David Murray · 11 years ago
- d9c116c Add a spacing saving heuristic to deque's extend methods by Raymond Hettinger · 11 years ago
- bbf8ce5 Issue #18408: Fix select.select() to handle PyList_New() failure (MemoryError) by Victor Stinner · 11 years ago
- 7979926 Issue #18408: Fix usage of _PyBytes_Resize() by Victor Stinner · 11 years ago
- bf2e2f9 Issue #18408: Fix zlib.compressobj() to handle PyThread_allocate_lock() failure by Victor Stinner · 11 years ago
- 3f15cf0 Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failure by Victor Stinner · 11 years ago
- 064bbdc fix indentation by Victor Stinner · 11 years ago
- 5d1866c Issue #18408: PyObject_GC_NewVar() now raises SystemError exception if nitems by Victor Stinner · 11 years ago
- c1eb26c gcmodule.c: strip trailing spaces by Victor Stinner · 11 years ago
- 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
- fa535f5 Issue #18227: pyexpat now uses a static XML_Memory_Handling_Suite. cElementTree uses the same approach since at least Python 2.6 by Christian Heimes · 11 years ago
- b7f1f65 Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void) by Victor Stinner · 11 years ago
- 11ebff2 Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the password by Victor Stinner · 11 years ago
- 5064a52 Issue #18227: Use PyMem_RawAlloc() in bz2, lzma and zlib modules by Victor Stinner · 11 years ago
- 6ce0dbf Fix a compiler warning in posix_sendfile() on FreeBSD: by Victor Stinner · 11 years ago
- b640491 Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules by Victor Stinner · 11 years ago
- 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
- b385529 Fix #ifdef by Raymond Hettinger · 11 years ago
- 82df925 Use macros for marking and checking endpoints in the doubly-linked list of blocks. by Raymond Hettinger · 11 years ago
- ef9b47f merge by Raymond Hettinger · 11 years ago
- f3a67b7 Improve variable names in deque_count() by Raymond Hettinger · 11 years ago
- 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
- df715ba Apply the PyObject_VAR_HEAD and Py_SIZE macros by Raymond Hettinger · 11 years ago
- 5bfa867 Refactor deque_traverse(). by Raymond Hettinger · 11 years ago
- 98054b4 Remove unnecessary branches from count() and reverse(). by Raymond Hettinger · 11 years ago
- de68e0c Speed-up deque indexing by changing the deque block length to a power of two. by Raymond Hettinger · 11 years ago
- 0857ab4 (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal by Victor Stinner · 11 years ago
- 8d37954 Issue #18343: faulthandler.register() now keeps the previous signal handler by Victor Stinner · 11 years ago
- 54882bf Singular form just like the other error message. by Christian Heimes · 11 years ago
- 8087879 Singular form just like the other error message. by Christian Heimes · 11 years ago
- bfafab1 Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a by Christian Heimes · 11 years ago