- dbe60ee bpo-43892: Validate the first term of complex literal value patterns (GH-25735) by Brandt Bucher · 4 years, 3 months ago
- 87655e2 bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736) by Steve Dower · 4 years, 3 months ago
- 9a2c2a9 bpo-42800: add audit hooks for f_code and tb_frame (GH-24182) by Ryan Hileman · 4 years, 3 months ago
- c76da79 bpo-42739: Don't use sentinels to mark end of line table. (GH-25657) by Mark Shannon · 4 years, 3 months ago
- 1e7b858 bpo-43892: Make match patterns explicit in the AST (GH-25585) by Nick Coghlan · 4 years, 3 months ago
- 32c5a17 bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) by Victor Stinner · 4 years, 3 months ago
- 284c52d bpo-38530: Require 50% similarity in NameError and AttributeError suggestions (GH-25584) by Dennis Sweeney · 4 years, 4 months ago
- face87c bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744) by Serhiy Storchaka · 4 years, 4 months ago
- 8cc3cfa bpo-42737: annotations with complex targets no longer causes any runtime effects (GH-23952) by Batuhan Taskaya · 4 years, 4 months ago
- 5e437fb bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1927) by Segev Finer · 4 years, 4 months ago
- a77aac4 bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) by Pablo Galindo · 4 years, 4 months ago
- a07da09 bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493) by Raymond Hettinger · 4 years, 4 months ago
- b0544ba bpo-38605: Revert making 'from __future__ import annotations' the default (GH-25490) by Pablo Galindo · 4 years, 4 months ago
- 7a04116 bpo-25460: Surround suggestions by quotes (GH-25473) by Pablo Galindo · 4 years, 4 months ago
- 0b1c169 bpo-38530: Cover more error paths in error suggestion functions (GH-25462) by Pablo Galindo · 4 years, 4 months ago
- 3ab4bea bpo-38530: Include builtins in NameError suggestions (GH-25460) by Pablo Galindo · 4 years, 4 months ago
- 0ad81d4 bpo-38530: Match exactly AttributeError and NameError when offering suggestions (GH-25443) by Pablo Galindo · 4 years, 4 months ago
- 8a232c7 bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419) by Inada Naoki · 4 years, 4 months ago
- 11e0b29 bpo-43846: Use less stack for large literals and calls (GH-25403) by Mark Shannon · 4 years, 4 months ago
- 3fc65b9 bpo-38530: Optimize the calculation of string sizes when offering suggestions (GH-25412) by Pablo Galindo · 4 years, 4 months ago
- e07f4ab bpo-38530: Make sure that failing to generate suggestions on failure will not propagate exceptions (GH-25408) by Pablo Galindo · 4 years, 4 months ago
- 5bf8bf2 bpo-38530: Offer suggestions on NameError (GH-25397) by Pablo Galindo · 4 years, 4 months ago
- 37494b4 bpo-38530: Offer suggestions on AttributeError (#16856) by Pablo Galindo · 4 years, 4 months ago
- 9e7b207 bpo-43760: Speed up check for tracing in interpreter dispatch (#25276) by Mark Shannon · 4 years, 4 months ago
- 77d668b bpo-43680: _pyio.open() becomes a static method (GH-25354) by Victor Stinner · 4 years, 4 months ago
- 09bbebe bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227) by Victor Stinner · 4 years, 4 months ago
- 75a06f0 bpo-43798: Add source location attributes to alias (GH-25324) by Matthew Suozzo · 4 years, 4 months ago
- 28d28e0 bpo-43760: Streamline dispatch sequence for machines without computed gotos. (GH-25244) by Mark Shannon · 4 years, 4 months ago
- 3d55aa9 bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262) by Victor Stinner · 4 years, 4 months ago
- d27f8d2 bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252) by Victor Stinner · 4 years, 4 months ago
- 7a7ba3d bpo-43495 : Push missing frame block in compile.c (GH-24865) by tomKPZ · 4 years, 4 months ago
- d36d6a9 bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243) by Victor Stinner · 4 years, 4 months ago
- 67969f5 Correct micro release number and add a couple of asserts. (GH-25224) by Mark Shannon · 4 years, 4 months ago
- 04732ca bpo-43105: Importlib now resolves relative paths when creating module spec objects from file locations (GH-25121) by Steve Dower · 4 years, 4 months ago
- 5061622 bump the bytecode magic number (GH-25225) by Dennis Sweeney · 4 years, 4 months ago
- 57c6cb5 bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-25169) by Brett Cannon · 4 years, 4 months ago
- b37181e bpo-43683: Handle generator entry in bytecode (GH-25138) by Mark Shannon · 4 years, 4 months ago
- f84d5a1 bpo-42128: __match_args__ can't be a list anymore (GH-25203) by Brandt Bucher · 4 years, 4 months ago
- c368ce7 bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172) by Dennis Sweeney · 4 years, 4 months ago
- f97dc80 bpo-43672: raise ImportWarning when calling find_loader() (GH-25119) by Brett Cannon · 4 years, 4 months ago
- 442ad74 bpo-43687: Py_Initialize() creates singletons earlier (GH-25147) by Victor Stinner · 4 years, 4 months ago
- fcb55c0 bpo-27129: Use instruction offsets, not byte offsets, in bytecode and internally. (GH-25069) by Mark Shannon · 4 years, 4 months ago
- ad493ed bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122) by Victor Stinner · 4 years, 4 months ago
- a7ff6df bpo-42134: Raise ImportWarning when calling find_module() in the import system (GH-25044) by Brett Cannon · 4 years, 4 months ago
- 09b90a0 bpo-43660: Fix crash when displaying exceptions with custom values for sys.stderr (GH-25075) by Pablo Galindo · 4 years, 4 months ago
- 4827483 bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481) by Inada Naoki · 4 years, 4 months ago
- 1899087 bpo-42136: Deprecate module_repr() as found in importlib (GH-25022) by Brett Cannon · 4 years, 5 months ago
- d41bddd Move big block of macros out of function to improve readability. (GH-25020) by Mark Shannon · 4 years, 5 months ago
- 4958f5d Only check evalbreaker after calls and on backwards egdes. Makes sure that __exit__ or __aexit__ is called in with statments in case of interrupt. (GH-18334) by Mark Shannon · 4 years, 5 months ago
- 9cb31d6 bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24953) by Brett Cannon · 4 years, 5 months ago
- a02683a bpo-31861: Fix reference leak in builtin_anext_impl() (GH-25008) by Pablo Galindo · 4 years, 5 months ago
- 8370e07 bpo-43244: Remove the pyarena.h header (GH-25007) by Victor Stinner · 4 years, 5 months ago
- 57364ce bpo-43244: Remove parser_interface.h header file (GH-25001) by Victor Stinner · 4 years, 5 months ago
- a81fca6 bpo-43244: Add pycore_compile.h header file (GH-25000) by Victor Stinner · 4 years, 5 months ago
- f0a6fde bpo-31861: Add aiter and anext to builtins (#23847) by Joshua Bronson · 4 years, 5 months ago
- 94faa07 bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) by Victor Stinner · 4 years, 5 months ago
- 39f6436 Revert "bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)" (GH-24964) by Victor Stinner · 4 years, 5 months ago
- 86883d4 bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955) by Dong-hee Na · 4 years, 5 months ago
- 88d9983 bpo-43551: Fix PyImport_Import() for subinterpreters (GH-24929) by junyixie · 4 years, 5 months ago
- 2fd16ef bpo-43517: Fix false positive in detection of circular imports (#24895) by Antoine Pitrou · 4 years, 5 months ago
- 28ad12f bpo-43244: Remove symtable.h header file (GH-24910) by Victor Stinner · 4 years, 5 months ago
- eec8e61 bpo-43244: Remove the PyAST_Validate() function (GH-24911) by Victor Stinner · 4 years, 5 months ago
- fc980e0 bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918) by Victor Stinner · 4 years, 5 months ago
- e0bf70d bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912) by Victor Stinner · 4 years, 5 months ago
- 526fdeb bpo-43244: Add pycore_ast.h header file (GH-24908) by Victor Stinner · 4 years, 5 months ago
- b4536e1 bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907) by Victor Stinner · 4 years, 5 months ago
- 9976834 bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843) by Victor Stinner · 4 years, 5 months ago
- a8ef457 bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867) by tsukasa-au · 4 years, 5 months ago
- c544093 Mark POP_TOP at end of expression statement as artificial, to conform to PEP 626. (GH-24860) by Mark Shannon · 4 years, 5 months ago
- d48848c bpo-39316: Make sure that attribute accesses and stores, including method calls, conform to PEP 626. (GH-24859) by Mark Shannon · 4 years, 5 months ago
- 5bd1059 bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821) by junyixie · 4 years, 5 months ago
- 87f649a bpo-43311: Create GIL autoTSSkey ealier (GH-24819) by Victor Stinner · 4 years, 5 months ago
- 9a9c11a bpo-43287: Use PEP 590 vectorcall to speed up filter() (GH-24611) by Dong-hee Na · 4 years, 5 months ago
- a9c03d7 bpo-43456: Remove _xxsubinterpreters from sys.stdlib_module_names (GH-24814) by Victor Stinner · 4 years, 5 months ago
- 57827f8 Fix typo in compile.c (GH-24812) by Ikko Ashimine · 4 years, 5 months ago
- 307745a bpo-43445: Add frozen modules to sys.stdlib_module_names (GH-24798) by Victor Stinner · 4 years, 5 months ago
- 3abf6f0 bpo-14678: Update zipimport to support importlib.invalidate_caches() (GH-24159) by Desmond Cheong · 4 years, 5 months ago
- 87ec26b bpo-43372: Use _freeze_importlib for regen-frozen. (GH-24759) by Neil Schemenauer · 4 years, 5 months ago
- 8e1b406 Make tracing info (bounds, and previous instruction offset) a bit more robust. (GH-24726) by Mark Shannon · 4 years, 5 months ago
- 02ac6f4 bpo-43390: Set SA_ONSTACK in PyOS_setsig (GH-24730) by Gregory P. Smith · 4 years, 5 months ago
- 6714825 bpo-42129: Add support for resources in namespaces (GH-24670) by Jason R. Coombs · 4 years, 5 months ago
- 131d551 bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739) by db3l · 4 years, 5 months ago
- 503627f bpo-43358: Fix bad free in assemble function (GH-24697) by Alex Henrie · 4 years, 5 months ago
- af5fa13 bpo-37146: Deactivate opcode cache only when using huntrleaks in the test suite (GH-24643) by Pablo Galindo · 4 years, 5 months ago
- c71d24f bpo-43321: Fix SystemError in getargs.c (GH-24656) by Inada Naoki · 4 years, 5 months ago
- 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 5 months ago
- 28a30bc closes bpo-43278: remove unnecessary leading '\n' from COMPILER when build with GCC/Clang (GH-24606) by Joseph Shen · 4 years, 6 months ago
- 91a639a bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927) by Inada Naoki · 4 years, 6 months ago
- d5fc998 bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582) by Victor Stinner · 4 years, 6 months ago
- 46496f9 bpo-42990: Functions inherit current builtins (GH-24564) by Victor Stinner · 4 years, 6 months ago
- 4a6bf27 bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561) by Nicholas Sim · 4 years, 6 months ago
- bcb094b bpo-43268: Pass interp rather than tstate to internal functions (GH-24580) by Victor Stinner · 4 years, 6 months ago
- a486054 bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579) by Victor Stinner · 4 years, 6 months ago
- acde3f1 bpo-43268: Remove abusive usage of tstate in sysmodule.c (#24581) by Victor Stinner · 4 years, 6 months ago
- 101bf69 bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577) by Victor Stinner · 4 years, 6 months ago
- ffa55d2 bpo-39448: Add regen-frozen makefile target. (GH-18174) by Neil Schemenauer · 4 years, 6 months ago
- 44085a3 bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566) by Victor Stinner · 4 years, 6 months ago
- 3cf0833 bpo-43152: Update assert statement to remove unused warning (GH-24473) by Dong-hee Na · 4 years, 6 months ago
- bdb941b bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056) by Inada Naoki · 4 years, 6 months ago
- 196d4de bpo-42882: Fix MSVC warnings in pystate.c (GH-24440) by Ken Jin · 4 years, 6 months ago