1. d7c3e5f importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052) by Quentin · 6 years ago
  2. d31e773 bpo-35029: Replace the SyntaxWarning exception with a SyntaxError. (GH-9999) by Serhiy Storchaka · 6 years ago
  3. 3bd0d62 Fix typos in comments (GH-9905) by Quan Tian · 6 years ago
  4. 6543912 bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652) by Serhiy Storchaka · 6 years ago
  5. 74a8b6e bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) by Stéphane Wirtel · 6 years ago
  6. de2aea0 bpo-34939: Allow annotated global names in module namespace (GH-9844) by Pablo Galindo · 6 years ago
  7. 53ebf4b Fix an incorrect check in compiler_try_except(). (GH-9810) by Zackery Spytz · 6 years ago
  8. fc439d2 Fix a possible decref of a borrowed reference in symtable.c. (GH-9786) by Zackery Spytz · 6 years ago
  9. cbda8fc closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666) by Benjamin Peterson · 6 years ago
  10. 2a2940e bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645) by Serhiy Storchaka · 6 years ago
  11. eef0596 bpo-31370: Remove references to threadless builds (#8805) by Zackery Spytz · 6 years ago
  12. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  13. 5a5ce06 bpo-5950: Support reading zips with comments in zipimport (#9548) by Zackery Spytz · 6 years ago
  14. 025eb98 bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338) by Ammar Askar · 6 years ago
  15. fd97d1f bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509) by David Cuthbert · 6 years ago
  16. 2ec872b bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473) by Yury Selivanov · 6 years ago
  17. 06e7608 Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) by Victor Stinner · 6 years ago
  18. e89de73 bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416) by jdemeyer · 6 years ago
  19. 9da3961 bpo-25711: Move _ZipImportResourceReader from importlib to zipimport. (GH-9406) by Serhiy Storchaka · 6 years ago
  20. 79d1c2e bpo-25711: Rewrite zipimport in pure Python. (GH-6809) by Serhiy Storchaka · 6 years ago
  21. 7bdf282 bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) by Serhiy Storchaka · 6 years ago
  22. dbdee00 bpo-34589: Add -X coerce_c_locale command line option (GH-9378) by Victor Stinner · 6 years ago
  23. 7a0791b bpo-34589: C locale coercion off by default (GH-9073) by Victor Stinner · 6 years ago
  24. 188ebfa bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371) by Victor Stinner · 6 years ago
  25. da8d72c bpo-12458: Fix line numbers for multiline expressions. (GH-8774) by Serhiy Storchaka · 6 years ago
  26. ddd1949 closes bpo-34673: Tweaks to make ceval more editable. (GH-9289) by Benjamin Peterson · 6 years ago
  27. 5903296 bpo-34651: Only allow the main interpreter to fork. (gh-9279) by Eric Snow · 6 years ago
  28. 53c427e bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260) by Eric V. Smith · 6 years ago
  29. c9a71dd closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212) by Benjamin Peterson · 6 years ago
  30. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  31. 9dfa0fe bpo-34637: Make the *start* argument for *sum()* visible as a keyword argument. (GH-9208) by Raymond Hettinger · 6 years ago
  32. d13e59c Make sure the line comes from the same node as the col offset. (GH-9189) by Benjamin Peterson · 6 years ago
  33. acd282f Initialize a variable to make the compiler happy. (GH-9153) by Benjamin Peterson · 6 years ago
  34. 90fc898 closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point to the "async" keyword. (GH-4175) by guoci · 6 years ago
  35. d545869 bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077) by Benjamin Peterson · 6 years ago
  36. 8ea0911 _Py_CoerceLegacyLocale() restores LC_CTYPE on fail (GH-9044) by Victor Stinner · 6 years ago
  37. 95d630e bpo-34408: Prevent a null pointer dereference and resource leakage in `PyInterpreterState_New()` (GH-8767) by Pablo Galindo · 6 years ago
  38. fbca908 bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) by Victor Stinner · 6 years ago
  39. de42755 bpo-34523: Py_FileSystemDefaultEncoding NULL by default (GH-9003) by Victor Stinner · 6 years ago
  40. cf21504 bpo-34485: Emit C locale coercion warning later (GH-9002) by Victor Stinner · 6 years ago
  41. 3d4226a bpo-34523: Support surrogatepass in locale codecs (GH-8995) by Victor Stinner · 6 years ago
  42. c5989cd bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998) by Victor Stinner · 6 years ago
  43. 70fead2 bpo-34523: Fix config_init_fs_encoding() (GH-8991) by Victor Stinner · 6 years ago
  44. b2457ef bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) by Victor Stinner · 6 years ago
  45. dfe0dc7 bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881) by Victor Stinner · 6 years ago
  46. 177d921 bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988) by Victor Stinner · 6 years ago
  47. 315877d bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) by Victor Stinner · 6 years ago
  48. 124b9eb bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982) by Victor Stinner · 6 years ago
  49. 2c8ddcf bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) by Victor Stinner · 6 years ago
  50. 9e4994d bpo-34485: Enhance init_sys_streams() (GH-8978) by Victor Stinner · 6 years ago
  51. d500e53 bpo-34403: On HP-UX, force ASCII for C locale (GH-8969) by Victor Stinner · 6 years ago
  52. 5cb2589 bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) by Victor Stinner · 6 years ago
  53. a2eefa6 bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934) by Alexey Izbyshev · 6 years ago
  54. eb746db bpo-34492: Python/coreconfig.c: Fix _Py_wstrlist_copy() (GH-8910) by Alexey Izbyshev · 6 years ago
  55. 2b824b2 closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum_impl() (GH-8872) by Alexey Izbyshev · 6 years ago
  56. 28853a2 bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852) by Alexey Izbyshev · 6 years ago
  57. 5a953fd bpo-34170: _PyCoreConfig_Read() don't replace coerce_c_locale (GH-8658) by Victor Stinner · 6 years ago
  58. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  59. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  60. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  61. cfc8831 Define _Py_NO_RETURN for Microsoft C compiler (GH-8606) by Victor Stinner · 6 years ago
  62. b75d7e2 bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) by Victor Stinner · 6 years ago
  63. 8ed317f bpo-34113: Fix a crash when using LLTRACE is on (GH-8517) by costypetrisor · 6 years ago
  64. 20678fd Add docstrings to public methods from context.c (GH-8531) by Peter Lamut · 6 years ago
  65. 1dc6e39 bpo-34170: Add _Py_InitializeFromConfig() (GH-8454) by Victor Stinner · 6 years ago
  66. 53b7d4e bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447) by Victor Stinner · 6 years ago
  67. d19d8d5 bpo-34170: Add _PyCoreConfig.isolated (GH-8417) by Victor Stinner · 6 years ago
  68. c573499 bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071) by Serhiy Storchaka · 6 years ago
  69. e22072f bpo-34149: Behavior of the min/max with key=None (GH-8328) by Alexander Marshalov · 6 years ago
  70. aba24ff bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) by Serhiy Storchaka · 6 years ago
  71. 147d955 bpo-34190: Fix reference leak in call_function() (GH-8413) by jdemeyer · 6 years ago
  72. 1426daa bpo-34127: Fix grammar in error message with respect to argument count (GH-8395) by Xtreak · 6 years ago
  73. 56868f9 bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) by jdemeyer · 6 years ago
  74. f2626ce bpo-34170: _PyCoreConfig_Read() leaves Py_IsolatedFlag unchanged (GH-8361) by Victor Stinner · 6 years ago
  75. b1147e4 bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353) by Victor Stinner · 6 years ago
  76. fb47bca bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) by Victor Stinner · 6 years ago
  77. 16dfca4 bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274) by INADA Naoki · 6 years ago
  78. 993030a bpo-34080: Fix a memory leak in the compiler. (GH-8222) by Serhiy Storchaka · 6 years ago
  79. 504373c bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) by Serhiy Storchaka · 6 years ago
  80. f60bf0e bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194) by Serhiy Storchaka · 6 years ago
  81. 3f4d90d bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) by Serhiy Storchaka · 6 years ago
  82. d8c3e82 Fix GCC warning in Python/hamt.c (GH-7618) by Zackery Spytz · 6 years ago
  83. d8cba5d bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) by Zackery Spytz · 6 years ago
  84. 41cb0ba bpo-33985: Implement ContextVar.name attribute. (GH-7980) by Yury Selivanov · 6 years ago
  85. ea73775 bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884) by Zackery Spytz · 6 years ago
  86. 209abf7 bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845) by Victor Stinner · 6 years ago
  87. b193fa9 bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834) by Carl Meyer · 6 years ago
  88. ceeef10 bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581) by Serhiy Storchaka · 6 years ago
  89. 3f45f5d bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) by Zackery Spytz · 6 years ago
  90. 11a8966 bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622) by Thomas Kluyver · 6 years ago
  91. 378c53c bpo-33803: Fix a crash in hamt.c (#7504) by Yury Selivanov · 6 years ago
  92. 2a4a62b bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) by Steve Dower · 6 years ago
  93. a8eb585 bpo-31849: Fix warning in pyhash.c (GH-6799) by A. Jesse Jiryu Davis · 6 years ago
  94. 6379913 bpo-33615: Re-enable a subinterpreter test. (gh-7251) by Eric Snow · 6 years ago
  95. 941ec21 bpo-32911: Add the historical note about the magic number. (GH-7273) by Serhiy Storchaka · 6 years ago
  96. a5c4228 bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Serhiy Storchaka · 6 years ago
  97. 143ce5c bpo-33691: Add _PyAST_GetDocString(). (GH-7236) by Serhiy Storchaka · 6 years ago
  98. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
  99. b6dccf5 bpo-33612: Remove PyThreadState_Clear() assertion (#7069) by Victor Stinner · 6 years ago
  100. f5e7b19 bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931) by Serhiy Storchaka · 6 years ago