1. ba65eed Upgrade python/cpython3 to v3.8.1 by Haibo Huang · 4 years, 4 months ago
  2. b1f2044 [3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645) (GH-17649) by Pablo Galindo · 4 years, 6 months ago
  3. cd968de The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586) by Miss Islington (bot) · 4 years, 6 months ago
  4. ce333cd Fix elif start column offset when there is an else following (GH-17596) (GH-17600) by Miss Islington (bot) · 4 years, 6 months ago
  5. 4a5db78 Add PYTHONUTF8 to commandline usage. (GH-17587) by Miss Islington (bot) · 4 years, 6 months ago
  6. 3b18b17 bpo-39031: Include elif keyword when producing lineno/col-offset info for if_stmt (GH-17582) (GH-17589) by Miss Islington (bot) · 4 years, 6 months ago
  7. c93d68b bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a deprecation warning (GH-17540) by Miss Islington (bot) · 4 years, 6 months ago
  8. 960fca1 bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497) by Miss Islington (bot) · 4 years, 6 months ago
  9. b74a6f1 bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are invoked (GH-17392) by Steve Dower · 4 years, 7 months ago
  10. 2ea4c37c bpo-38823: Fix refleak in marshal init error path (GH-17260) by Miss Islington (bot) · 4 years, 7 months ago
  11. b3614d2 Python3 build support by Dan Willemsen · 4 years, 8 months ago
  12. 4c22e16 closes bpo-37633: Reëxport some function compatibility wrappers for macros in ``pythonrun.h``. (GH-17056) by Miss Islington (bot) · 4 years, 8 months ago
  13. dcb338e bpo-38640: Allow break and continue in always false while loops (GH-16992) by Miss Skeleton (bot) · 4 years, 8 months ago
  14. ba3a566 bpo-38535: Fix positions for AST nodes for calls without arguments in decorators. (GH-16861) by Miss Skeleton (bot) · 4 years, 8 months ago
  15. edf9e8e Fix typo in formatter_unicode (GH-16831) by Miss Skeleton (bot) · 4 years, 8 months ago
  16. b1fc8c0 bpo-38540: Fix possible leak in PyArg_Parse for "esGH-" and "etGH-". (GH-16869) by Miss Skeleton (bot) · 4 years, 8 months ago
  17. 8ca282f Typo fix - implemention should be implementation (GH-16806) by Miss Islington (bot) · 4 years, 8 months ago
  18. 927f07c bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16755) (#16760) by Miss Islington (bot) · 4 years, 8 months ago
  19. a04c7eb Correct signature of __build_class__ (GH-16735) by Miss Islington (bot) · 4 years, 8 months ago
  20. 380eb42 [3.8] Typo fix: "throuhgh" should be "through". (GH-16713) by Benjamin Peterson · 4 years, 8 months ago
  21. 6b6935e bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) by Miss Islington (bot) · 4 years, 8 months ago
  22. d8071cb Typo fix: "empy" should be "empty". (GH-16666) by Miss Islington (bot) · 4 years, 8 months ago
  23. aa9d5b8 Fix typo in _warnings.warn_explicit() docstring (GH-16625) by Miss Islington (bot) · 4 years, 8 months ago
  24. d49f096 bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509) by Miss Islington (bot) · 4 years, 9 months ago
  25. bdace21 bpo-38304: Remove PyConfig.struct_size (GH-16500) by Victor Stinner · 4 years, 9 months ago
  26. c9ed9e6 bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) by Miss Islington (bot) · 4 years, 9 months ago
  27. 6e12838 bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453) by Victor Stinner · 4 years, 9 months ago
  28. 96c8475 [3.8] bpo-38234: Backport init path config changes from master (GH-16423) by Victor Stinner · 4 years, 9 months ago
  29. 3f5409a bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336) by Victor Stinner · 4 years, 9 months ago
  30. c5c6425 bpo-38236: Dump path config at first import error (GH-16300) (GH-16332) by Victor Stinner · 4 years, 9 months ago
  31. 24231ca bpo-38237: Shorter docstring (GH-16322) (GH-16323) by Miss Islington (bot) · 4 years, 9 months ago
  32. 37bc935 bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320) by Miss Islington (bot) · 4 years, 9 months ago
  33. 9f3dcf8 [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) (GH-16313) by Victor Stinner · 4 years, 9 months ago
  34. 47bbab9 [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258) by Victor Stinner · 4 years, 9 months ago
  35. d322abb [3.8] bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) (GH-16141) by Serhiy Storchaka · 4 years, 9 months ago
  36. a0d4aac [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16064) by Jason R. Coombs · 4 years, 9 months ago
  37. 2bb6bf0 bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961) by Paul Ganssle · 4 years, 9 months ago
  38. a5a7102 closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007) by Miss Islington (bot) · 4 years, 9 months ago
  39. 0a6693a [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913) by Brett Cannon · 4 years, 9 months ago
  40. 97c2f68 [3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) (#15861) by Jason R. Coombs · 4 years, 9 months ago
  41. 45bc392 bpo-38090: Fix reference leak in ceval.c (GH-15848) by Miss Islington (bot) · 4 years, 9 months ago
  42. 2d5594f bpo-20490: Improve circular import error message (GH-15308) by Steve Dower · 4 years, 9 months ago
  43. 353053d [3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) (GH-15635) by Serhiy Storchaka · 4 years, 10 months ago
  44. 4bd1d05 Fix typos mostly in comments, docs and test names (GH-15209) by Miss Islington (bot) · 4 years, 10 months ago
  45. 27f4186 bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) (GH-15608) by Miss Islington (bot) · 4 years, 10 months ago
  46. 96631dc [3.8] bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593). (GH-15599) by Serhiy Storchaka · 4 years, 10 months ago
  47. 384c6d7 bpo-37947: Avoid double-decrement in symtable recursion counting (GH-15593) by Miss Islington (bot) · 4 years, 10 months ago
  48. f92bb6e bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit test (GH-15081) by Miss Islington (bot) · 4 years, 10 months ago
  49. d5ba8bb Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551) by Miss Islington (bot) · 4 years, 10 months ago
  50. ed8af33 bpo-37954: Fix reference leak in the symtable (GH-15514) by Miss Islington (bot) · 4 years, 10 months ago
  51. 3769425 [3.8] bpo-37947: Adjust correctly the recursion level in symtable for named expressions (GH-15499) (GH-15515) by Pablo Galindo · 4 years, 10 months ago
  52. 6ca0307 [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15491) by Nick Coghlan · 4 years, 10 months ago
  53. 21161d7 [3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480) by Raymond Hettinger · 4 years, 10 months ago
  54. ed146b5 [3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320) (GH-15456) by Serhiy Storchaka · 4 years, 10 months ago
  55. 920ec4b bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095) by Miss Islington (bot) · 4 years, 10 months ago
  56. 076d0b9 bpo-29535: Remove promize about hash randomization of datetime objects. (GH-15269) by Miss Islington (bot) · 4 years, 10 months ago
  57. af84a88 bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435) by Victor Stinner · 4 years, 10 months ago
  58. 3921d12 bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) by Miss Islington (bot) · 4 years, 10 months ago
  59. a6427cb bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423) by Miss Islington (bot) · 4 years, 10 months ago
  60. ca9ae94 bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420) by Victor Stinner · 4 years, 10 months ago
  61. 9eb3d54 bpo-37834: Normalise handling of reparse points on Windows (GH-15370) by Steve Dower · 4 years, 10 months ago
  62. 786a4e1 bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-15180) by Miss Islington (bot) · 4 years, 10 months ago
  63. 4c5b6ba [3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142) by Serhiy Storchaka · 4 years, 10 months ago
  64. 8399641 bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748) by Miss Islington (bot) · 4 years, 11 months ago
  65. 9ea738e bpo-37500: Make sure dead code does not generate bytecode but also detect syntax errors (GH-14612) by Miss Islington (bot) · 4 years, 11 months ago
  66. f96334c bpo-37697: Sync with importlib_metadata 0.19 (GH-14993) (GH-14995) by Miss Islington (bot) · 5 years ago
  67. bf8e82f [3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782) by Jeroen Demeyer · 5 years ago
  68. 24b5b36 [3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900) by Kyle Stanley · 5 years ago
  69. 3015191 Adjust builtins.zip() docstring to better communicate its signature (GH-14833) by Miss Islington (bot) · 5 years ago
  70. cf9a63c bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Miss Islington (bot) · 5 years ago
  71. c7be35c bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607) by Miss Islington (bot) · 5 years ago
  72. 96f581c bpo-36763: Add PyConfig_SetWideStringList() (GH-14444) by Miss Islington (bot) · 5 years ago
  73. 2683ded bpo-37467: Fix PyErr_Display() for bytes filename (GH-14504) by Miss Islington (bot) · 5 years ago
  74. cb083f7 bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959) (#14505) by Miss Islington (bot) · 5 years ago
  75. 323e743 bpo-37369: Fix initialization of sys members when launched via an app container (GH-14467) by Steve Dower · 5 years ago
  76. 8763d43 bpo-37363: Add audit events for a range of modules (GH-14301) by Miss Islington (bot) · 5 years ago
  77. 175b2e9 bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modification (GH-14320) by Miss Islington (bot) · 5 years ago
  78. 5c8b4e2 bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313) by Miss Islington (bot) · 5 years ago
  79. 874ff65 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Miss Islington (bot) · 5 years ago
  80. 6c79477 bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152) by Steve Dower · 5 years ago
  81. 693945d bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) (GH-14140) by Miss Islington (bot) · 5 years ago
  82. 284daea bpo-37289: Remove 'if False' handling in the peephole optimizer (GH-14099) (GH-14112) by Miss Islington (bot) · 5 years ago
  83. 7cd581a bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071) by Miss Islington (bot) · 5 years ago
  84. 886d83e bpo-37077: Add native thread ID (TID) for AIX (GH-13624) by Miss Islington (bot) · 5 years ago
  85. 5282b3b bpo-37213: Handle negative line deltas correctly in the peephole optimizer (GH-13969) by Miss Islington (bot) · 5 years ago
  86. 032bf30 bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020) by Miss Islington (bot) · 5 years ago
  87. 92e836c bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) by Miss Islington (bot) · 5 years ago
  88. c9ca96d bpo-37160: Thread native ID NetBSD support (GH-13835) by Miss Islington (bot) · 5 years ago
  89. b2fd32b bpo-35766: compile(): rename feature_version parameter (GH-13994) (GH-14001) by Victor Stinner · 5 years ago
  90. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 5 years ago
  91. eddef86 bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787) by Inada Naoki · 5 years ago
  92. e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 5 years ago
  93. 0b9956e bpo-37087: Adding native ID support for OpenBSD (GH-13654) by David Carlier · 5 years ago
  94. 395420e bpo-26219: remove unused code (GH-13775) by Inada Naoki · 5 years ago
  95. 91234a1 bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) by Inada Naoki · 5 years ago
  96. 8565f6b bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760) by Pablo Galindo · 5 years ago
  97. 6a150bc bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714) by Eric Snow · 5 years ago
  98. 938d9a0 Fix compiler warnings in the pystrehex module (GH-13730) by Pablo Galindo · 5 years ago
  99. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 5 years ago
  100. 396e0a8 bpo-36818: Add PyInterpreterState.runtime field. (gh-13129) by Eric Snow · 5 years ago