1. 1b0393d bpo-36127: Fix compiler warning in _PyArg_UnpackKeywords(). (GH-12353) by Serhiy Storchaka · 6 years ago
  2. d2fdd1f bpo-36124: Add PyInterpreterState.dict. (gh-12132) by Eric Snow · 6 years ago
  3. c11183c bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) by Eric Snow · 6 years ago
  4. 842a2f0 bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246) by Eric Snow · 6 years ago
  5. e3f4070 bpo-33608: Fix PyEval_InitThreads() warning (GH-12346) by Victor Stinner · 6 years ago
  6. 6259976 bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347) by Victor Stinner · 6 years ago
  7. 74f6568 bpo-36301: Add _PyWstrList structure (GH-12343) by Victor Stinner · 6 years ago
  8. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 6 years ago
  9. 2c0d3f4 bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318) by Serhiy Storchaka · 6 years ago
  10. f2f55e7 bpo-36282: Improved error message for too much positional arguments. (GH-12310) by Serhiy Storchaka · 6 years ago
  11. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 6 years ago
  12. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 6 years ago
  13. 9776b06 bpo-36262: Fix _Py_dg_strtod() memory leak (goto undfl) (GH-12276) by Victor Stinner · 6 years ago
  14. 1b304f9 Remove d_initial from the parser as it is unused (GH-12212) by tyomitch · 6 years ago
  15. 8479a34 bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245) by Eric Snow · 6 years ago
  16. 5be45a6 bpo-33608: Minor cleanup related to pending calls. (gh-12247) by Eric Snow · 6 years ago
  17. 7bda9de Simplify DISPATCH by hoisting eval_breaker ahead of time. (gh-12243) by Eric Snow · 6 years ago
  18. ab9b31f bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690) by Anthony Sottile · 6 years ago
  19. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 6 years ago
  20. 25d13f3 bpo-36142: PYTHONMALLOC overrides PYTHONDEV (GH-12191) by Victor Stinner · 6 years ago
  21. 4fffd38 bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188) by Victor Stinner · 6 years ago
  22. c656e25 bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187) by Victor Stinner · 6 years ago
  23. 7d2ef3e bpo-36142: _PyPreConfig_Write() sets the allocator (GH-12186) by Victor Stinner · 6 years ago
  24. a9df651 bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185) by Victor Stinner · 6 years ago
  25. d8b3a98 bpo-36187: Remove NamedStore. (GH-12167) by Serhiy Storchaka · 6 years ago
  26. b35be4b bpo-36142: Add _PyPreConfig.allocator (GH-12181) by Victor Stinner · 6 years ago
  27. 5a02e0d bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174) by Victor Stinner · 6 years ago
  28. 6dcb542 bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173) by Victor Stinner · 6 years ago
  29. cad1f74 bpo-36142: Add _PyPreConfig structure (GH-12172) by Victor Stinner · 6 years ago
  30. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 6 years ago
  31. f4b0a1c bpo-31904: Add encoding support for VxWorks RTOS (GH-12051) by pxinwr · 6 years ago
  32. bcfa450 bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003) by Eric Snow · 6 years ago
  33. 1f24a71 bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814) by Pablo Galindo · 6 years ago
  34. bda918bf bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. (gh-12062) by Eric Snow · 6 years ago
  35. b05b711 bpo-33608: Use _Py_AddPendingCall() in _PyCrossInterpreterData_Release(). (gh-12024) by Eric Snow · 6 years ago
  36. 91b9ecf bpo-36142: Add preconfig.c (GH-12128) by Victor Stinner · 6 years ago
  37. 95e2cbf bpo-36142: Move command line parsing to coreconfig.c (GH-12123) by Victor Stinner · 6 years ago
  38. 62be763 bpo-36142: Remove _PyMain structure (GH-12120) by Victor Stinner · 6 years ago
  39. dfe8847 bpo-36142: Rework error reporting in pymain_main() (GH-12113) by Victor Stinner · 6 years ago
  40. f684d83 bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) by Victor Stinner · 6 years ago
  41. f1b9abe bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032) by Sergey Fedoseev · 6 years ago
  42. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 6 years ago
  43. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  44. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
  45. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 6 years ago
  46. 463572c bpo-36101: remove non-ascii characters in docstring (GH-12018) by animalize · 6 years ago
  47. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 6 years ago
  48. be3b295 bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) by Eric Snow · 6 years ago
  49. 3ad9167 bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958) by Stéphane Wirtel · 6 years ago
  50. d9bc543 Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963) by Gregory P. Smith · 6 years ago
  51. b5409da bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852) by Stéphane Wirtel · 6 years ago
  52. 001fee1 bpo-12822: use monotonic clock for condvar if possible (GH-11723) by Inada Naoki · 6 years ago
  53. 46a9792 bpo-36049: Fix compiler warning in Python/ast.c (GH-11949) by Pablo Galindo · 6 years ago
  54. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 6 years ago
  55. 4583525 bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639) by Serhiy Storchaka · 6 years ago
  56. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 6 years ago
  57. 16f842d bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in channel_send() (gh-11822) by Alexey Izbyshev · 6 years ago
  58. 522346d Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821) by Guido van Rossum · 6 years ago
  59. 4b250fc bpo-35766 follow-up: Add an error check to new_type_comment() (#11766) by Guido van Rossum · 6 years ago
  60. 164686f Fix compiler warning about non initialised variable (GH-11806) by Pablo Galindo · 6 years ago
  61. 181835d Fix compiler warnings about end_col_offset and end_lineno (GH-11735) by Ivan Levkivskyi · 6 years ago
  62. 69091cb bpo-35321: Set the spec origin to frozen in frozen modules (#11732) by Nina Zakharenko · 6 years ago
  63. 8ebc645 bpo-35890 : Fix some API calling consistency (GH-11742) by Minmin Gong · 6 years ago
  64. 4860f01 bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789) by Tony Roberts · 6 years ago
  65. 05e9221 bpo-33316: PyThread_release_lock always fails (GH-6541) by native-api · 6 years ago
  66. d2b4c19 bpo-35879: Fix type comment leaks (GH-11728) by Guido van Rossum · 6 years ago
  67. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 6 years ago
  68. 3a32e3b bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714) by Guido van Rossum · 6 years ago
  69. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  70. 62c35a8 bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) by Ivan Levkivskyi · 6 years ago
  71. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  72. ab67281 bpo-35713: Reorganize sys module initialization (GH-11658) by Victor Stinner · 6 years ago
  73. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
  74. bf4ac2d bpo-35713: Rework Python initialization (GH-11647) by Victor Stinner · 6 years ago
  75. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  76. 3bcbedc bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) by Serhiy Storchaka · 6 years ago
  77. 3607ef4 bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561) by Serhiy Storchaka · 6 years ago
  78. 6fe9c44 bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(). (GH-9457) by Serhiy Storchaka · 6 years ago
  79. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 6 years ago
  80. f1ec3ce bpo-35634: Raise an error when first passed kwargs contains duplicated keys. (GH-11438) by Serhiy Storchaka · 6 years ago
  81. 58159ef bpo-35494: Improve syntax error messages for unbalanced parentheses in f-string. (GH-11161) by Serhiy Storchaka · 6 years ago
  82. 7934266 bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524) by Serhiy Storchaka · 6 years ago
  83. fdf282d bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) by Eric Snow · 6 years ago
  84. a909460 bpo-34569: Fix subinterpreter 32-bit ABI, pystate.c/_new_long_object() (gh-9127) by Michael Felt · 6 years ago
  85. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  86. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  87. 89c4f90 bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx(). (GH-11128) by Zackery Spytz · 6 years ago
  88. a5b7616 remove doc-string declaration no longer used after AC conversion (GH-11444) by Tal Einat · 6 years ago
  89. 9a69ae8 Bump copyright years to 2019. (GH-11404) by Benjamin Peterson · 6 years ago
  90. ede0b6f bpo-20182: AC convert Python/sysmodule.c (GH-11328) by Tal Einat · 6 years ago
  91. 6f9bc72 bpo-35550: Fix incorrect Solaris define guards (GH-11275) by Jakub Kulík · 6 years ago
  92. e2926b7 bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726) by Michael Felt · 6 years ago
  93. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  94. 6326278 bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438) by Xtreak · 6 years ago
  95. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  96. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  97. dffccc6 bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075) by Serhiy Storchaka · 6 years ago
  98. 72ff7b4 bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-11063) by Serhiy Storchaka · 6 years ago
  99. 99d56b5 bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Zackery Spytz · 6 years ago
  100. 028f0ef bpo-9566: Fix compiler warnings in peephole.c (GH-10652) by Victor Stinner · 6 years ago