summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-142-8/+69
* bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo2021-04-142-1/+157
* bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)Mark Shannon2021-04-133-28/+38
* bpo-43680: _pyio.open() becomes a static method (GH-25354)Victor Stinner2021-04-121-3/+3
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-17/+16
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-101-3/+97
* bpo-43760: Streamline dispatch sequence for machines without computed gotos. ...Mark Shannon2021-04-081-61/+52
* bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262)Victor Stinner2021-04-071-6/+8
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-072-285/+294
* bpo-43495 : Push missing frame block in compile.c (GH-24865)tomKPZ2021-04-071-1/+10
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-076-286/+288
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-071-3/+3
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-071-2436/+2494
* bump the bytecode magic number (GH-25225)Dennis Sweeney2021-04-061-1/+1
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-063-3603/+3670
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-064-2586/+2656
* bpo-42128: __match_args__ can't be a list anymore (GH-25203)Brandt Bucher2021-04-061-8/+1
* bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)Dennis Sweeney2021-04-041-1/+1
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-021-523/+528
* bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)Victor Stinner2021-04-022-45/+73
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-016-4515/+4498
* bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)Victor Stinner2021-04-011-0/+1
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-302-956/+971
* bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...Pablo Galindo2021-03-291-1/+2
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-293-2/+20
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-262-1468/+1490
* Move big block of macros out of function to improve readability. (GH-25020)Mark Shannon2021-03-251-38/+40
* Only check evalbreaker after calls and on backwards egdes. Makes sure that __...Mark Shannon2021-03-241-46/+37
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-241-123/+124
* bpo-31861: Fix reference leak in builtin_anext_impl() (GH-25008)Pablo Galindo2021-03-241-1/+4
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-246-94/+95
* bpo-43244: Remove parser_interface.h header file (GH-25001)Victor Stinner2021-03-242-7/+9
* bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner2021-03-236-49/+15
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-232-1/+100
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-239-15/+10
* Revert "bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)" (GH...Victor Stinner2021-03-221-19/+17
* bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955)Dong-hee Na2021-03-221-2/+43
* bpo-43551: Fix PyImport_Import() for subinterpreters (GH-24929)junyixie2021-03-221-16/+21
* bpo-43517: Fix false positive in detection of circular imports (#24895)Antoine Pitrou2021-03-201-1/+1
* bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner2021-03-193-75/+43
* bpo-43244: Remove the PyAST_Validate() function (GH-24911)Victor Stinner2021-03-182-2/+3
* bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)Victor Stinner2021-03-181-4/+2
* bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912)Victor Stinner2021-03-181-251/+5
* bpo-43244: Add pycore_ast.h header file (GH-24908)Victor Stinner2021-03-173-13/+7
* bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)Victor Stinner2021-03-171-1/+1
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)Victor Stinner2021-03-171-39/+79
* bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867)tsukasa-au2021-03-161-4/+8
* Mark POP_TOP at end of expression statement as artificial, to conform to PEP ...Mark Shannon2021-03-151-0/+2
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-143-6/+22
* bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)junyixie2021-03-131-17/+19