1. 9ef5dca bpo-36763: Add _Py_InitializeMain() (GH-13362) by Victor Stinner · 5 years ago
  2. c96be81 bpo-36900: Replace global conf vars with config (GH-13299) by Victor Stinner · 5 years ago
  3. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  4. d9bc543 Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963) by Gregory P. Smith · 5 years ago
  5. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 5 years ago
  6. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  7. 82daa60 bpo-30167: Remove __cached__ from __main__ when removing __file__ (GH-7415) by INADA Naoki · 6 years ago
  8. 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 6 years ago
  9. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  10. 5f2df88 bpo-35177: Add dependencies between header files (GH-10361) by Victor Stinner · 6 years ago
  11. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  12. 53c427e bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260) by Eric V. Smith · 6 years ago
  13. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  14. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  15. aba24ff bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) by Serhiy Storchaka · 6 years ago
  16. 993030a bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Serhiy Storchaka · 6 years ago
  17. d8cba5d bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) by Zackery Spytz · 6 years ago
  18. ea73775 bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884) by Zackery Spytz · 6 years ago
  19. ceeef10 bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581) by Serhiy Storchaka · 6 years ago
  20. 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 7 years ago
  21. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  22. e0582a3 bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160) by xdegaye · 7 years ago
  23. e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 7 years ago
  24. 66caacf bpo-30817: Fix PyErr_PrintEx() when no memory (#2526) by xdegaye · 7 years ago
  25. de86073 bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014) by Zane Bitter · 7 years ago
  26. dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 7 years ago
  27. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  28. 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 7 years ago
  29. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  30. c7ec998 bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729) by Eric Snow · 7 years ago
  31. 72e81d0 bpo-29556: Remove unused #include <langinfo.h> (#98) by Yen Chi Hsuan · 7 years ago
  32. b46edf3 Issue #25677: Merge SyntaxError caret positioning from 3.6 by Martin Panter · 8 years ago
  33. 619555d Issue #25677: Merge SyntaxError caret positioning from 3.5 by Martin Panter · 8 years ago
  34. ca3263c Issue #25677: Correct syntax error caret for indented blocks. by Martin Panter · 8 years ago
  35. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  36. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  37. fab6acd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 8 years ago
  38. f5894dd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 8 years ago
  39. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  40. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  41. 71cb64a PyErr_PrintEx() now uses fast call by Victor Stinner · 8 years ago
  42. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  43. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  44. 8cacc63 Issue #22836: Merge exception reporting from 3.5 by Martin Panter · 8 years ago
  45. 3263f68 Issue #22836: Keep exception reports sensible despite errors by Martin Panter · 8 years ago
  46. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  47. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  48. 56f6e76 Issue #15989: Fixed some scarcely probable integer overflows. by Serhiy Storchaka · 9 years ago
  49. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  50. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  51. 5200f55 Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() by Victor Stinner · 9 years ago
  52. c4821d6 Closes #22869: Move PyOS_CheckStack back to pythonrun.c by Zachary Ware · 10 years ago
  53. 9b59dd4 Issue #22869: Remove duplicate stack check from pythonrun.c by Steve Dower · 10 years ago
  54. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  55. a5b335e Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd, by Victor Stinner · 10 years ago
  56. ce43f38 Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is by Victor Stinner · 10 years ago
  57. 0011124 Issue #22043: _PyTime_Init() now checks if the system clock works. by Victor Stinner · 10 years ago
  58. 98ea54c Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  59. 1c33280 Issue #21425: Fix flushing of standard streams in the interactive interpreter. by Antoine Pitrou · 10 years ago
  60. 9845c7e Issue #21425: Fix flushing of standard streams in the interactive interpreter. by Antoine Pitrou · 10 years ago
  61. 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 10 years ago
  62. dc28213 - Merge 3.4 by doko@ubuntu.com · 10 years ago
  63. 518e610 Issue #19977, #19036: Always include <locale.h> in pythonrun.c by Victor Stinner · 10 years ago
  64. 7143029 Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale), by Victor Stinner · 10 years ago
  65. 15054c1 Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 10 years ago
  66. 933538e Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 10 years ago
  67. d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown by Nick Coghlan · 10 years ago
  68. 2bd59da Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
  69. 65fd059 Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
  70. 52ce3b0 Issue #19817: Fix print_exception(), clear the exception on error by Victor Stinner · 11 years ago
  71. be0708f Closes #19831: Stop tracemalloc later at Python shutdown to be able to use by Victor Stinner · 11 years ago
  72. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  73. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  74. 2f5bbc6 pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of by Victor Stinner · 11 years ago
  75. b5a7a0a (Merge 3.3) pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get by Victor Stinner · 11 years ago
  76. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  77. dcf17f8 Issue #19466: Fix typo. Patch written by Vajrasky Kok. by Victor Stinner · 11 years ago
  78. 45956b9 Close #19466: Clear the frames of daemon threads earlier during the Python by Victor Stinner · 11 years ago
  79. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  80. efa7a0e print_error_text() doesn't encode the filename anymore by Victor Stinner · 11 years ago
  81. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  82. 937114f print_exception(): don't encode the module name to UTF-8 by Victor Stinner · 11 years ago
  83. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  84. 95701bd Issue #19512: Add PyRun_InteractiveOneObject() function by Victor Stinner · 11 years ago
  85. 4ee41c5 Issue #19512: _print_total_refs() now uses an identifier to get "showrefcount" by Victor Stinner · 11 years ago
  86. efa4867 Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the by Christian Heimes · 11 years ago
  87. 49e6180 Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the by Christian Heimes · 11 years ago
  88. 1805a62 Issue #16129: Py_SetStandardStreamEncoding cleanups by Nick Coghlan · 11 years ago
  89. 7d270ee Issue #16129: Add `Py_SetStandardStreamEncoding` by Nick Coghlan · 11 years ago
  90. 6039db8 Issue #18776: atexit callbacks now display their full traceback when they raise an exception. by Antoine Pitrou · 11 years ago
  91. 24201d4 Issue #18776: atexit callbacks now display their full traceback when they raise an exception. by Antoine Pitrou · 11 years ago
  92. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  93. 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
  94. 55a1220 pythonrun.c: use MAXPATHLEN instead of PATH_MAX by Victor Stinner · 11 years ago
  95. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  96. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  97. 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
  98. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  99. 32d483c Fix style by Antoine Pitrou · 11 years ago
  100. ba30883 Issue #18520: Fix initstdio(), handle PySys_SetObject() failure by Victor Stinner · 11 years ago