1. d01d396e Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". by Antoine Pitrou · 11 years ago
  2. 409b538 Don't export internal symbols ("make smelly") by Antoine Pitrou · 11 years ago
  3. 1164dfc Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to 10%) smaller. by Antoine Pitrou · 11 years ago
  4. 8d19767 Close #19199: Remove ``PyThreadState.tick_counter`` field by Victor Stinner · 11 years ago
  5. 1cfa0ba Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  6. 59c900d Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  7. af1edb7 merge with 3.3 by Georg Brandl · 11 years ago
  8. c6a2c9b Closes #15213: update comment for _PyOS_URandom by Georg Brandl · 11 years ago
  9. 5c4b4c5 [issue19152] Revert 832579dbafd6. by Eric Snow · 11 years ago
  10. af8566c [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  11. 5179445 [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  12. efbc475 [issue19151] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  13. e8bbfeb [issue19951] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  14. c30d058 merge 3.3 (#19098) by Benjamin Peterson · 11 years ago
  15. 305e5aa don't scale compiler stack frames if the recursion limit is huge (closes #19098) by Benjamin Peterson · 11 years ago
  16. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  17. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  18. b034eee Close #18954: Fix some typo in fileutils.c comments by Victor Stinner · 11 years ago
  19. 3c56145 Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  20. c9e1dcd Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  21. 9ab358a Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  22. d151da9 Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  23. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago
  24. 4879a96 Issue #18756: os.urandom() now uses a lazily-opened persistent file descriptor, so as to avoid using many file descriptors when run in parallel from multiple threads. by Antoine Pitrou · 11 years ago
  25. 55a1220 pythonrun.c: use MAXPATHLEN instead of PATH_MAX by Victor Stinner · 11 years ago
  26. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  27. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  28. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  29. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  30. c82bfd8 Issue #18664, #18408: Rewrite PyErr_WriteUnraisable() to handle errors by Victor Stinner · 11 years ago
  31. 0e1e043 #18839: merge with 3.3. by Ezio Melotti · 11 years ago
  32. 4af4d27 #18839: document that sys.exit() will not accept a non-integer numeric value as exit status. by Ezio Melotti · 11 years ago
  33. 7eaf3f7 Issue #18808: Non-daemon threads are now automatically joined when a sub-interpreter is shutdown (it would previously dump a fatal error). by Antoine Pitrou · 11 years ago
  34. 3a7dffa remove support for compiling on systems without getcwd() by Benjamin Peterson · 11 years ago
  35. cba2e3c remove unused declaration by Victor Stinner · 11 years ago
  36. 01a513b Remove last bit of GNU pth thread by Christian Heimes · 11 years ago
  37. 95b2146 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  38. ec34ab5 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  39. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  40. 40322e6 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
  41. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  42. 79ba388 Improve verbose reporting of shutdown phase by using the "public" module name by Antoine Pitrou · 11 years ago
  43. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  44. 95db2e7 Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object. by Antoine Pitrou · 11 years ago
  45. 84f31a5 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
  46. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  47. 32d483c Fix style by Antoine Pitrou · 11 years ago
  48. c588fee Issue #15893: Improve error handling in main() and Py_FrozenMain() by Victor Stinner · 11 years ago
  49. 739cf4e Py_FrozenMain() now uses _Py_char2wchar() to decode command line arguments, as by Victor Stinner · 11 years ago
  50. b5245be Issue #18203: Replace PyMem_Malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  51. 597696c (Merge 3.3) Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 11 years ago
  52. 36577e4 Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 11 years ago
  53. b7f1b38 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
  54. 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
  55. b318990 (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
  56. 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
  57. ee4b59c (Merge 3.3) According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
  58. ce72e1c According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
  59. 4ebf6d7 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  60. 704e2d3 Issue #18560: Fix potential NULL pointer dereference in sum() by Christian Heimes · 11 years ago
  61. 6f08d30 Fix potential NULL pointer dereferencing in ast module CID 719690 by Christian Heimes · 11 years ago
  62. 72f562f Fix potential NULL pointer dereferencing in ast module CID 719690 by Christian Heimes · 11 years ago
  63. 26421ab merge 3.3 by Benjamin Peterson · 11 years ago
  64. 7d28b6b return NULL here by Benjamin Peterson · 11 years ago
  65. ba30883 Issue #18520: Fix initstdio(), handle PySys_SetObject() failure by Victor Stinner · 11 years ago
  66. 62ce62a Issue #18520: initsite() is a little bit more verbose when import site fails by Victor Stinner · 11 years ago
  67. 5804960 Issue #18520: Fix _PySys_Init(), handle PyDict_SetItemString() errors by Victor Stinner · 11 years ago
  68. f54a574 Issue #18520: PyErr_NoMemory() now fails with a fatal error if it is called by Victor Stinner · 11 years ago
  69. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  70. de0e63b Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
  71. 60a6067 Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], by Christian Heimes · 11 years ago
  72. c3e10c2 merge 3.3 by Benjamin Peterson · 11 years ago
  73. 0f9b7d3 fix spacing by Benjamin Peterson · 11 years ago
  74. 33113a3 merge 3.3 by Benjamin Peterson · 11 years ago
  75. 04b01dc let's not return NULL from functions that should return ints by Benjamin Peterson · 11 years ago
  76. d786ad5 Issue #18520: Fix initsigs(), handle PyOS_InitInterrupts() error by Victor Stinner · 11 years ago
  77. 02e8b53 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 11 years ago
  78. 1f34729 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 11 years ago
  79. 8282d74 Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 11 years ago
  80. 8c077bc Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 11 years ago
  81. 7bc80fc Check return value of fstat() in _PyImport_GetDynLoadFunc() CID 486250 by Christian Heimes · 11 years ago
  82. 27c4c3e Check return value of fstat() in _PyImport_GetDynLoadFunc() CID 486250 by Christian Heimes · 11 years ago
  83. 74ba26a Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensionObject() by Christian Heimes · 11 years ago
  84. 09ca794 Add missing check of PyDict_SetItem()'s return value in _PyImport_FindExtensionObject() by Christian Heimes · 11 years ago
  85. 895bdfb Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
  86. 0bd447f Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
  87. ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 11 years ago
  88. 479054b Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  89. 8e54b1c Issue #18408: Fix _PyImport_LoadDynamicModule(), handle PyUnicode_FromFormat() failure by Victor Stinner · 11 years ago
  90. 0fae8f9 Issue #18408: Fix ast_for_atom(), PyErr_Fetch(&type, &value, &tback) can set value to NULL by Victor Stinner · 11 years ago
  91. 26f9199 Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c by Victor Stinner · 11 years ago
  92. 43d8195 Issue #18408: Handle PyArena_AddPyObject() failure in ast.c by Victor Stinner · 11 years ago
  93. 74a7fa6 Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() failure by Victor Stinner · 11 years ago
  94. bdf630c Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError) by Victor Stinner · 11 years ago
  95. 1e53bba Issue #18408: handle PySys_GetObject() failure, raise a RuntimeError by Victor Stinner · 11 years ago
  96. 78e2c98 Issue #18408: Fix show_warning(), clear also the exception raised by by Victor Stinner · 11 years ago
  97. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  98. ceceaa0 Issue #18408: Fix _Py_DisplaySourceLine() by Victor Stinner · 11 years ago
  99. 7eab0d0 Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError by Victor Stinner · 11 years ago
  100. a79e4fb Issue #18342: Use the repr of a module name for ``from ... import by Brett Cannon · 11 years ago