1. 95db2e7 Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object. by Antoine Pitrou · 12 years ago
  2. 84f31a5 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 12 years ago
  3. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 12 years ago
  4. 32d483c Fix style by Antoine Pitrou · 12 years ago
  5. c588fee Issue #15893: Improve error handling in main() and Py_FrozenMain() by Victor Stinner · 12 years ago
  6. 739cf4e Py_FrozenMain() now uses _Py_char2wchar() to decode command line arguments, as by Victor Stinner · 12 years ago
  7. b5245be Issue #18203: Replace PyMem_Malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 12 years ago
  8. 597696c (Merge 3.3) Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 12 years ago
  9. 36577e4 Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 12 years ago
  10. b7f1b38 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 12 years ago
  11. 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 12 years ago
  12. b318990 (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 12 years ago
  13. 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 12 years ago
  14. ee4b59c (Merge 3.3) According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 12 years ago
  15. ce72e1c According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 12 years ago
  16. 4ebf6d7 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 12 years ago
  17. 704e2d3 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 12 years ago
  18. 6f08d30 Fix potential NULL pointer dereferencing in ast module CID 719690 by Christian Heimes · 12 years ago
  19. 72f562f Fix potential NULL pointer dereferencing in ast module CID 719690 by Christian Heimes · 12 years ago
  20. 26421ab merge 3.3 by Benjamin Peterson · 12 years ago
  21. 7d28b6b return NULL here by Benjamin Peterson · 12 years ago
  22. ba30883 Issue #18520: Fix initstdio(), handle PySys_SetObject() failure by Victor Stinner · 12 years ago
  23. 62ce62a Issue #18520: initsite() is a little bit more verbose when import site fails by Victor Stinner · 12 years ago
  24. 5804960 Issue #18520: Fix _PySys_Init(), handle PyDict_SetItemString() errors by Victor Stinner · 12 years ago
  25. f54a574 Issue #18520: PyErr_NoMemory() now fails with a fatal error if it is called by Victor Stinner · 12 years ago
  26. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 12 years ago
  27. de0e63b Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 12 years ago
  28. 60a6067 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 12 years ago
  29. c3e10c2 merge 3.3 by Benjamin Peterson · 12 years ago
  30. 0f9b7d3 fix spacing by Benjamin Peterson · 12 years ago
  31. 33113a3 merge 3.3 by Benjamin Peterson · 12 years ago
  32. 04b01dc let's not return NULL from functions that should return ints by Benjamin Peterson · 12 years ago
  33. d786ad5 Issue #18520: Fix initsigs(), handle PyOS_InitInterrupts() error by Victor Stinner · 12 years ago
  34. 02e8b53 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 12 years ago
  35. 1f34729 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 12 years ago
  36. 8282d74 Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 12 years ago
  37. 8c077bc Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 12 years ago
  38. 7bc80fc Check return value of fstat() in _PyImport_GetDynLoadFunc() CID 486250 by Christian Heimes · 12 years ago
  39. 27c4c3e Check return value of fstat() in _PyImport_GetDynLoadFunc() CID 486250 by Christian Heimes · 12 years ago
  40. 74ba26a Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensionObject() by Christian Heimes · 12 years ago
  41. 09ca794 Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensionObject() by Christian Heimes · 12 years ago
  42. 895bdfb Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 12 years ago
  43. 0bd447f Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 12 years ago
  44. ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 12 years ago
  45. 479054b Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failure by Victor Stinner · 12 years ago
  46. 8e54b1c Issue #18408: Fix _PyImport_LoadDynamicModule(), handle PyUnicode_FromFormat() failure by Victor Stinner · 12 years ago
  47. 0fae8f9 Issue #18408: Fix ast_for_atom(), PyErr_Fetch(&type, &value, &tback) can set value to NULL by Victor Stinner · 12 years ago
  48. 26f9199 Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c by Victor Stinner · 12 years ago
  49. 43d8195 Issue #18408: Handle PyArena_AddPyObject() failure in ast.c by Victor Stinner · 12 years ago
  50. 74a7fa6 Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() failure by Victor Stinner · 12 years ago
  51. bdf630c Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError) by Victor Stinner · 12 years ago
  52. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 12 years ago
  53. 78e2c98 Issue #18408: Fix show_warning(), clear also the exception raised by by Victor Stinner · 12 years ago
  54. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 12 years ago
  55. ceceaa0 Issue #18408: Fix _Py_DisplaySourceLine() by Victor Stinner · 12 years ago
  56. 7eab0d0 Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError by Victor Stinner · 12 years ago
  57. a79e4fb Issue #18342: Use the repr of a module name for ``from ... import by Brett Cannon · 12 years ago
  58. f0cb692 Issue #18415: Normalize what type of quotes are used with string by Brett Cannon · 12 years ago
  59. fb3a630 Issue #18408: errors.c: in debug mode, calling PyErr_BadInternalCall() now by Victor Stinner · 12 years ago
  60. 365b693 Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check on by Victor Stinner · 12 years ago
  61. cc35159 Issue #18408: normalizestring() now raises MemoryError on memory allocation failure by Victor Stinner · 12 years ago
  62. 6b64a68 Issue #18408: Fix compiler_import() to handle PyUnicode_Substring() failure properly by Victor Stinner · 12 years ago
  63. 9a4fb66 Issue #18408: ste_new() initialize all attributes before handling error by Victor Stinner · 12 years ago
  64. f9e6672 Issue #17872: Fix a segfault in marshal.load() when input stream returns by Serhiy Storchaka · 12 years ago
  65. 3641a74 Issue #17872: Fix a segfault in marshal.load() when input stream returns by Serhiy Storchaka · 12 years ago
  66. a155d40 Fix reference leaks introduced by the patch for issue #5308. by Serhiy Storchaka · 12 years ago
  67. dfde215 Fix reference leaks introduced by the patch for issue #5308. by Serhiy Storchaka · 12 years ago
  68. 6cee994 Issue #18426: improve exception message. Courtesy of Amaury by Christian Heimes · 12 years ago
  69. 7ce57d6 Issue #18426: improve exception message. Courtesy of Amaury by Christian Heimes · 12 years ago
  70. 5ec4464 Issue #18426: Fix NULL pointer dereference in C extension import when by Christian Heimes · 12 years ago
  71. 848ee09 Issue #18426: Fix NULL pointer dereference in C extension import when by Christian Heimes · 12 years ago
  72. acb362e Merge: #18424: PEP8ify the tense of the sum docstring. by R David Murray · 12 years ago
  73. 87ead11 #18424: PEP8ify the tense of the sum docstring. by R David Murray · 12 years ago
  74. aaa8ed8 Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when by Victor Stinner · 12 years ago
  75. e0af3a8 Issue #18408: Fix PyCode_Optimize(): raise a MemoryError on memory allocation by Victor Stinner · 12 years ago
  76. 0ff0f54 Issue #18408: Fix call_function() of ceval.c to handle PyTuple_New() failure by Victor Stinner · 12 years ago
  77. 3a8b79d Issue #18408: Fix marshal reader for Unicode strings: handle by Victor Stinner · 12 years ago
  78. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 12 years ago
  79. c6632e7 Issue #18203: Replace malloc() with PyMem_Malloc() to allocate arena objects by Victor Stinner · 12 years ago
  80. 80aa565 Issue #18203: Replace malloc() with PyMem_RawMalloc() to allocate thread locks by Victor Stinner · 12 years ago
  81. 65bf9cf Issue #18203: Fix decode_ascii_surrogateescape(), use PyMem_RawMalloc() as _Py_char2wchar() by Victor Stinner · 12 years ago
  82. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 12 years ago
  83. 51fa458 Issue #18203: Fix Py_Finalize(): destroy the GIL after the last call to by Victor Stinner · 12 years ago
  84. 7e5d557 merge for issue #18351. by Brett Cannon · 12 years ago
  85. a53cca3 Issue #18351: Fix various issues with importlib._bootstrap._get_sourcefile(). by Brett Cannon · 12 years ago
  86. 0075110 Issue #18364: Stop using the ImportError._not_found hack. by Brett Cannon · 12 years ago
  87. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 12 years ago
  88. 82da888 Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError by Brett Cannon · 12 years ago
  89. 1d5b933 Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the by Christian Heimes · 12 years ago
  90. b9dbc7d Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the by Christian Heimes · 12 years ago
  91. 4d6018f Issue 18111: Add a default argument to min() and max() by Raymond Hettinger · 12 years ago
  92. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 12 years ago
  93. 7b25135 Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64 by Victor Stinner · 12 years ago
  94. 76d3850 Issue #9566: Fix a compiler warning on Windows x64 by Victor Stinner · 12 years ago
  95. 582cfbb import.c does neither need mode_t nor _mkdir() anymore by Christian Heimes · 12 years ago
  96. 2ab07f0 (Merge 3.3) Issue #18137: Detect integer overflow on precision in by Victor Stinner · 12 years ago
  97. 2f084ec Issue #18137: Detect integer overflow on precision in float.__format__() and by Victor Stinner · 12 years ago
  98. f1913ca marshal: optimize parsing of empty Unicode strings by Victor Stinner · 12 years ago
  99. c61b913 #13226: update references from ctypes/DLFCN modules to os module by Andrew Kuchling · 12 years ago
  100. 1a1a06e Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn. by Antoine Pitrou · 12 years ago