aboutsummaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-105340: include hidden fast-locals in locals() (GH-105715) (#106470)Miss Islington (bot)2023-07-052-34/+66
* [3.12] Document PYTHONSAFEPATH along side -P (GH-106122) (#106352)Miss Islington (bot)2023-07-051-2/+2
* [3.12] gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nod...Miss Islington (bot)2023-07-011-12/+6
* [3.12] gh-101006: Improve error handling when read marshal data (GH-101007) (...Miss Islington (bot)2023-06-291-61/+71
* [3.12] gh-106118: Add O_CLOEXEC preprocessor guard (GH-106120) (#106199)Miss Islington (bot)2023-06-281-1/+4
* [3.12] gh-106030: Miscellaneous fixes in Python/suggestions.c (GH-106031) (#1...Miss Islington (bot)2023-06-261-15/+27
* [3.12] gh-105979: Fix exception handling in `unmarshal_frozen_code` (`Python/...Miss Islington (bot)2023-06-261-0/+1
* [3.12] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10...Serhiy Storchaka2023-06-241-7/+5
* [3.12] gh-105908: fix `barry_as_FLUFL` future import (GH-105909) (#105930)Miss Islington (bot)2023-06-201-6/+10
* [3.12] GH-105840: Fix assertion failures when specializing calls with too man...Miss Islington (bot)2023-06-161-2/+2
* [3.12] GH-105588: Add missing error checks to some obj2ast_* converters (GH-1...Miss Islington (bot)2023-06-151-0/+7
* [3.12] gh-105699: Use a Thread-Local Variable for PKGCONTEXT (gh-105740) (gh-...Miss Islington (bot)2023-06-141-0/+15
* [3.12] gh-104812: Run Pending Calls in any Thread (gh-104813) (gh-105752)Eric Snow2023-06-144-83/+191
* [3.12] gh-105603: Change the PyInterpreterConfig.own gil Field (gh-105620) (g...Miss Islington (bot)2023-06-131-4/+15
* [3.12] gh-105673: Fix uninitialized warning in sysmodule.c (GH-105674) (#105675)Miss Islington (bot)2023-06-121-1/+1
* [3.12] gh-105375: Improve error handling in the sys extension module (GH-1056...Miss Islington (bot)2023-06-111-6/+18
* [3.12] gh-105375: Improve PyErr_WarnExplicit() error handling (GH-105610) (#1...Miss Islington (bot)2023-06-111-12/+16
* [3.12] gh-105375: Improve error handling in the builtins extension module (GH...Miss Islington (bot)2023-06-111-8/+32
* [3.12] gh-105375: Improve error handling in compiler_enter_scope() (GH-105494...Miss Islington (bot)2023-06-091-1/+5
* [3.12] gh-105564: Don't include artificial newlines in the line attribute of ...Miss Islington (bot)2023-06-091-0/+3
* [3.12] gh-100227: Lock Around Modification of the Global Allocators State (gh...Miss Islington (bot)2023-06-081-1/+2
* [3.12] gh-100227: Lock Around Adding Global Audit Hooks (gh-105515) (gh-105525)Eric Snow2023-06-082-20/+43
* [3.12] gh-100227: Lock Around Use of the Global "atexit" State (gh-105514) (g...Miss Islington (bot)2023-06-082-25/+27
* [3.12] gh-105390: Add explicit type cast (GH-105466) (#105472)Miss Islington (bot)2023-06-071-1/+2
* [3.12] gh-105435: Fix spurious NEWLINE token if file ends with comment withou...Miss Islington (bot)2023-06-071-0/+11
* [3.12] gh-105390: Correctly raise TokenError instead of SyntaxError for token...Miss Islington (bot)2023-06-071-7/+2
* [3.12] gh-105259: Ensure we don't show newline characters for trailing NEWLIN...Miss Islington (bot)2023-06-061-4/+6
* [3.12] gh-105164: Detect annotations inside match blocks (GH-105177) (#105313)Miss Islington (bot)2023-06-051-0/+10
* [3.12] gh-105184: document that marshal functions can fail and need to be che...Miss Islington (bot)2023-06-021-0/+4
* [3.12] gh-104799: Default missing lists in AST to the empty list (GH-104834) ...Miss Islington (bot)2023-06-021-219/+365
* [3.12] gh-104341: Call _PyEval_ReleaseLock() with NULL When Finalizing the Cu...Miss Islington (bot)2023-06-013-8/+45
* [3.12] gh-105069: Add a readline-like callable to the tokenizer to consume in...Miss Islington (bot)2023-05-312-22/+31
* [3.12] gh-105042: Disable unmatched parens syntax error in python tokenize (G...Miss Islington (bot)2023-05-311-1/+1
* [3.12] gh-105035: fix super() calls on unusual types (e.g. meta-types) (GH-10...Miss Islington (bot)2023-05-302-221/+225
* [3.12] gh-104799: Move location of type_params AST fields (GH-104828) (#104974)Miss Islington (bot)2023-05-301-163/+162
* gh-104820: Fixes os.stat on Windows to better handle file systems that do not...Miss Islington (bot)2023-05-291-1/+2
* [3.12] gh-105017: Include CRLF lines in strings and column numbers (GH-105030...Miss Islington (bot)2023-05-281-2/+7
* [3.12] gh-104976: Ensure trailing dedent tokens are emitted as the previous t...Miss Islington (bot)2023-05-261-3/+23
* [3.12] gh-104972: Ensure that line attributes in tokens in the tokenize modul...Miss Islington (bot)2023-05-261-5/+4
* [3.12] gh-104825: Remove implicit newline in the line attribute in tokens emi...Pablo Galindo Salgado2023-05-241-0/+4
* gh-104741: Add line number attribute to indentation error exception (#104743)Marta Gómez Macías2023-05-221-6/+9
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-215-219/+221
* gh-102856: Tokenize performance improvement (#104731)Marta Gómez Macías2023-05-221-1/+16
* gh-104686: Fix tracing for decorated classes (#104708)Jelle Zijlstra2023-05-211-0/+4
* gh-103295: expose API for writing perf map files (#103546)gsallam2023-05-213-69/+96
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-212-22/+140
* gh-104640: Disallow walrus in comprehension within type scopes (#104641)Jelle Zijlstra2023-05-191-4/+31
* GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...Mark Shannon2023-05-191-4/+0
* gh-104619: never leak comprehension locals to outer locals() (#104637)Carl Meyer2023-05-181-21/+19
* gh-104602: ensure all cellvars are known up front (#104603)Carl Meyer2023-05-192-20/+21