summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [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-225-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-191-21/+19
* gh-104602: ensure all cellvars are known up front (#104603)Carl Meyer2023-05-192-20/+21
* gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)Carl Meyer2023-05-182-2/+24
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-2/+2
* GH-104580: Don't cache eval breaker in interpreter (GH-104581)Mark Shannon2023-05-184-258/+256
* gh-104374: Remove access to class scopes for inlined comprehensions (#104528)Jelle Zijlstra2023-05-182-7/+18
* GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...Mark Shannon2023-05-172-3/+1564
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-171-4/+4
* GH-103906: Remove immortal refcounting in the interpreter (GH-103909)Brandt Bucher2023-05-162-509/+473
* gh-103865: add monitoring support to LOAD_SUPER_ATTR (#103866)Carl Meyer2023-05-166-229/+309
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-1611-626/+2291
* gh-104482: Fix error handling bugs in ast.c (#104483)Irit Katriel2023-05-152-19/+38
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-155-6/+32
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-151-10/+0
* gh-87092: avoid gcc warning on uninitialized struct field in assemble.c (#104...Dong-hee Na2023-05-141-1/+2
* gh-104404: fix crasher with nested comprehensions plus lambdas (#104442)Carl Meyer2023-05-131-7/+14
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-124-403/+434
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-127-145/+178
* gh-104413: Fix refleak when super attribute throws AttributeError (#104414)Jelle Zijlstra2023-05-122-114/+116
* gh-104377: fix cell in comprehension that is free in outer scope (#104394)Carl Meyer2023-05-111-3/+12
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-115-287/+324
* gh-87849: fix SEND specialization family definition (GH-104268)Carl Meyer2023-05-113-176/+177