1. b1147e4 bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353) by Victor Stinner · 6 years ago
  2. fb47bca bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) by Victor Stinner · 6 years ago
  3. 16dfca4 bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274) by INADA Naoki · 6 years ago
  4. 993030a bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Serhiy Storchaka · 6 years ago
  5. 504373c bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) by Serhiy Storchaka · 6 years ago
  6. f60bf0e bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194) by Serhiy Storchaka · 6 years ago
  7. 3f4d90d bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) by Serhiy Storchaka · 6 years ago
  8. d8c3e82 Fix GCC warning in Python/hamt.c (GH-7618) by Zackery Spytz · 6 years ago
  9. d8cba5d bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) by Zackery Spytz · 6 years ago
  10. 41cb0ba bpo-33985: Implement ContextVar.name attribute. (GH-7980) by Yury Selivanov · 6 years ago
  11. ea73775 bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884) by Zackery Spytz · 6 years ago
  12. 209abf7 bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845) by Victor Stinner · 6 years ago
  13. b193fa9 bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834) by Carl Meyer · 6 years ago
  14. ceeef10 bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581) by Serhiy Storchaka · 6 years ago
  15. 3f45f5d bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) by Zackery Spytz · 6 years ago
  16. 11a8966 bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622) by Thomas Kluyver · 6 years ago
  17. 378c53c bpo-33803: Fix a crash in hamt.c (#7504) by Yury Selivanov · 6 years ago
  18. 2a4a62b bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) by Steve Dower · 6 years ago
  19. a8eb585 bpo-31849: Fix warning in pyhash.c (GH-6799) by A. Jesse Jiryu Davis · 6 years ago
  20. 6379913 bpo-33615: Re-enable a subinterpreter test. (gh-7251) by Eric Snow · 6 years ago
  21. 941ec21 bpo-32911: Add the historical note about the magic number. (GH-7273) by Serhiy Storchaka · 6 years ago
  22. a5c4228 bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Serhiy Storchaka · 6 years ago
  23. 143ce5c bpo-33691: Add _PyAST_GetDocString(). (GH-7236) by Serhiy Storchaka · 6 years ago
  24. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
  25. b6dccf5 bpo-33612: Remove PyThreadState_Clear() assertion (#7069) by Victor Stinner · 6 years ago
  26. f5e7b19 bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931) by Serhiy Storchaka · 6 years ago
  27. 64fddc4 bpo-33475: Fix and improve converting annotations to strings. (GH-6774) by Serhiy Storchaka · 6 years ago
  28. 6d2cd90 bpo-32604: Improve subinterpreter tests. (#6914) by Eric Snow · 6 years ago
  29. b056562 bpo-33509: Fix _warnings for module_globals=None (#6833) by Victor Stinner · 6 years ago
  30. 5e6312c bpo-33443 Fix typo in Python/import.c (GH-6722) by ukwksk · 6 years ago
  31. 898ff92 fix error message in ast.c (#6776) by Jelle Zijlstra · 6 years ago
  32. 1e2ec8a bpo-28055: Fix unaligned accesses in siphash24(). (GH-6123) by Rolf Eike Beer · 6 years ago
  33. fb7e799 bpo-30465: Fix C downcast warning on Windows in ast.c (#6593) by Victor Stinner · 6 years ago
  34. c1a6832 bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606) by Serhiy Storchaka · 6 years ago
  35. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  36. e239650 bpo-33363: raise SyntaxError for async for/with outside async functions (#6616) by Zsolt Dollenstein · 6 years ago
  37. 57faf34 bpo-33334: Support NOP and EXTENDED_ARG in dis.stack_effect(). (#6566) by Serhiy Storchaka · 6 years ago
  38. e9d9494 bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564) by Serhiy Storchaka · 6 years ago
  39. 0977091 bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6273) by Pablo Galindo · 6 years ago
  40. 61f82e0 Spelling fixes to docs, docstrings, and comments (GH-6374) by Ville Skyttä · 6 years ago
  41. d70c2a6 bpo-33298: Wrap only constants with _PyCode_ConstantKey() in the compiler. (GH-6512) by Serhiy Storchaka · 6 years ago
  42. b7e1eff bpo-33299: Return an object itself for some types in _PyCode_ConstantKey(). (GH-6513) by Serhiy Storchaka · 6 years ago
  43. f303639 bpo-33270: Intern names for all anonymous code objects (#6472) by Zackery Spytz · 7 years ago
  44. 9e2be60 bpo-33169: Remove values of `None` from sys.path_importer_cache when invalidating caches (GH-6402) by Brett Cannon · 7 years ago
  45. 3a9ccee bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) by Marcel Plch · 7 years ago
  46. 0c1c456 bpo-33231: Fix potential leak in normalizestring() (GH-6386) by INADA Naoki · 7 years ago
  47. a68f2f0 bpo-29922: Improve error messages in 'async with' (GH-6352) by Serhiy Storchaka · 7 years ago
  48. aa8e51f bpo-33132: Fix more reference counting issues in the compiler. (GH-6323) by Serhiy Storchaka · 7 years ago
  49. d5d9e02 bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) by Nick Coghlan · 7 years ago
  50. bc77eff bpo-33042: Fix pre-initialization sys module configuration (GH-6157) by Nick Coghlan · 7 years ago
  51. a95d986 bpo-33132: Fix reference counting issues in the compiler. (GH-6209) by Serhiy Storchaka · 7 years ago
  52. d8b291a bpo-32932: More revealing error message when non-str objects in __all__ (GH-5848) by Xiang Zhang · 7 years ago
  53. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
  54. fe2bbb1 bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822) by Serhiy Storchaka · 7 years ago
  55. 4484f9d bpo-33021: Release the GIL during fstat() calls (GH-6019) by Nir Soffer · 7 years ago
  56. 9fb8415 Drop confusing commented out code in pystrtod.c (GH-6072) by Siddhesh Poyarekar · 7 years ago
  57. 3f7e9aa bpo-32925: Optimized iterating and containing test for literal lists (GH-5842) by Serhiy Storchaka · 7 years ago
  58. 4e24425 bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873) by Serhiy Storchaka · 7 years ago
  59. 67ee077 bpo-33041: Add missed error checks when compile "async for" (#6053) by Serhiy Storchaka · 7 years ago
  60. 24d3201 bpo-33041: Fixed bytecode generation for "async for" with a complex target. (#6052) by Serhiy Storchaka · 7 years ago
  61. 3c7ac7e Add two missing error checks in hamt.c (GH-5851) by Xiang Zhang · 7 years ago
  62. 5d92647 bpo-33005: Fix _PyGILState_Reinit() (#6001) by Victor Stinner · 7 years ago
  63. efd2bac Fix strncpy warning with gcc 8 (#5840) by Siddhesh Poyarekar · 7 years ago
  64. 7023644 closes bpo-32980 Remove _PyFrame_Init (GH-5965) by Thomas Nyberg · 7 years ago
  65. 3a087be bpo-32836: Remove obsolete code from symtable pass (GH-5680) by Nitish Chandra · 7 years ago
  66. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 7 years ago
  67. 4af8fd5 bpo-32838: Fix Python versions in the table of magic numbers. (#5658) by Serhiy Storchaka · 7 years ago
  68. f53d9f2 bpo-32604: Swap threads only if the interpreter is different. (gh-5778) by Eric Snow · 7 years ago
  69. b3b4a9d bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (#5739) by Alexey Izbyshev · 7 years ago
  70. 4c6955e bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-5709) by Eric Snow · 7 years ago
  71. bfe4fd5 Fix some warnings produced by different compilers. (#5593) by Serhiy Storchaka · 7 years ago
  72. c1e46e9 bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) by Alexey Izbyshev · 7 years ago
  73. 07ca9af bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-4564) by Serhiy Storchaka · 7 years ago
  74. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 7 years ago
  75. 4e9da0d bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (#5507) by Eric Snow · 7 years ago
  76. bbbcf86 bpo-32303 - Consistency fixes for namespace loaders (#5481) by Barry Warsaw · 7 years ago
  77. aa0735f bpo-32747: Remove trailing spaces in docstrings. (GH-5491) by oldk · 7 years ago
  78. 461d225 bpo-32674: Improve the docstring for __import__ (GH-5339) by oldk · 7 years ago
  79. 55e0839 bpo-32436: Fix compiler warning (#5483) by Yury Selivanov · 7 years ago
  80. 01a0cb8 Fix typo in hamt.c comments (#5478) by Dmitry Alimov · 7 years ago
  81. 83ab995 bpo-32711: Fix warnings for Python/ast_unparse.c (#5426) by Stéphane Wirtel · 7 years ago
  82. 7f8bfc9 bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh-1748) by Eric Snow · 7 years ago
  83. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 7 years ago
  84. c65ef77 rename _imp initialization function to follow conventions (#5432) by Benjamin Peterson · 7 years ago
  85. b647d70 bpo-32707: Fix warnings in hamt.c (#5430) by Yury Selivanov · 7 years ago
  86. 2914bb3 bpo-20891: Py_Initialize() now creates the GIL (#4700) by Victor Stinner · 7 years ago
  87. 997478e bpo-32688: Make why the line is commented out clear (GH-5405) by Xiang Zhang · 7 years ago
  88. bc4123b bpo-32436: Use PyThreadState_GET() in all hot paths (GH-5363) by Yury Selivanov · 7 years ago
  89. 226e500 bpo-32436: Make PyContextVar_Get a little bit faster (#5350) by Yury Selivanov · 7 years ago
  90. 43c47fe bpo-32670: Enforce PEP 479. (#5327) by Yury Selivanov · 7 years ago
  91. dba976b bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337) by Nathaniel J. Smith · 7 years ago
  92. 95e4d58 String annotations [PEP 563] (#4390) by Guido van Rossum · 7 years ago
  93. 6ab6292 bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326) by Yury Selivanov · 7 years ago
  94. 93a6119 Fix 3rd level node's binary representation in HAMT algorithm description (#5319) by Dmitry Alimov · 7 years ago
  95. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  96. b7a80d5 bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292) by Yury Selivanov · 7 years ago
  97. 0bad4d6 bpo-32436: Fix potential NULL dereference (#5286) by Yury Selivanov · 7 years ago
  98. 83c8675 bpo-32436: Remove a redundant assert (#5275) by Yury Selivanov · 7 years ago
  99. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  100. 9089a26 bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272) by Victor Stinner · 7 years ago