summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Miss Islington (bot)2021-06-031-0/+808
* [3.10] bpo-44298: Backport #26513 to 3.10 (#26516)Mark Shannon2021-06-033-2853/+2862
* bpo-28146: Fix a confusing error message in str.format() (GH-24213)Miss Islington (bot)2021-05-131-2/+8
* [3.10] bpo-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26061)Mark Shannon2021-05-131-0/+29
* bpo-44063: set the missing end locations on the compiler (GH-25956) (#25972)Miss Islington (bot)2021-05-071-5/+13
* bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937)Miss Islington (bot)2021-05-071-8/+5
* Correct location for syntax error in try-except (GH-25939)Mark Shannon2021-05-061-1/+1
* bpo-38530: Refactor and improve AttributeError suggestions (GH-25776)Dennis Sweeney2021-05-031-59/+130
* bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)Pablo Galindo2021-05-031-1/+1
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-0/+1
* bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)Batuhan Taskaya2021-05-031-10/+91
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-024-340/+483
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-304-2950/+2956
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub KulĂ­k2021-04-301-0/+106
* bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)Victor Stinner2021-04-301-1/+1
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-301-30/+9
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-302-66/+8
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-302-38/+20
* bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)Steve Dower2021-04-301-1/+1
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-291-1/+1
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-295-4952/+4921
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-297-488/+1498
* bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)Victor Stinner2021-04-281-6/+7
* bpo-38530: Require 50% similarity in NameError and AttributeError suggestions...Dennis Sweeney2021-04-271-1/+4
* bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744)Serhiy Storchaka2021-04-252-142/+291
* bpo-42737: annotations with complex targets no longer causes any runtime effe...Batuhan Taskaya2021-04-251-0/+6
* bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...Segev Finer2021-04-231-16/+45
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-234-62/+209
* bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)Raymond Hettinger2021-04-222-5/+11
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-214-120/+157
* bpo-25460: Surround suggestions by quotes (GH-25473)Pablo Galindo2021-04-191-2/+2
* bpo-38530: Cover more error paths in error suggestion functions (GH-25462)Pablo Galindo2021-04-171-2/+5
* bpo-38530: Include builtins in NameError suggestions (GH-25460)Pablo Galindo2021-04-171-1/+11
* bpo-38530: Match exactly AttributeError and NameError when offering suggestio...Pablo Galindo2021-04-161-2/+2
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-164-3253/+3266
* bpo-43846: Use less stack for large literals and calls (GH-25403)Mark Shannon2021-04-151-50/+144
* bpo-38530: Optimize the calculation of string sizes when offering suggestions...Pablo Galindo2021-04-141-8/+10
* bpo-38530: Make sure that failing to generate suggestions on failure will not...Pablo Galindo2021-04-142-7/+5
* 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