summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-094-6645/+6638
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Pablo Galindo Salgado2021-08-071-22/+13
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Victor Stinner2021-08-061-3/+4
* bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)Victor Stinner2021-08-062-0/+24
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-042-12/+33
* closes bpo-39091: Fix segfault when Exception constructor returns non-excepti...Noah2021-08-031-4/+16
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-292-5/+11
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+78
* bpo-43897: Reject "_" captures and top-level MatchStar in the AST validator (...Brandt Bucher2021-07-291-20/+28
* bpo-43897: AST validation for pattern matching nodes (GH24771)Batuhan Taskaya2021-07-281-31/+123
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-268-272/+433
* bpo-44600: Fix line numbers for pattern matching cleanup code (GH-27346)Charles Burkland2021-07-251-4/+12
* bpo-43950: support some multi-line expressions for PEP 657 (GH-27339)Batuhan Taskaya2021-07-251-9/+28
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-241-1732/+1749
* bpo-43950: check against the raw string, not the pyobject (GH-27337)Batuhan Taskaya2021-07-241-1/+1
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-241-1749/+1732
* bpo-43950: ensure source_line is present when specialising the traceback (GH-...Batuhan Taskaya2021-07-241-2/+2
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-241-1732/+1749
* bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)Dong-hee Na2021-07-231-40/+8
* bpo-44353: Implement typing.NewType __call__ method in C (#27262)Yurii Karabas2021-07-221-0/+1
* bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)Batuhan Taskaya2021-07-201-0/+10
* bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)Mark Shannon2021-07-191-1/+6
* bpo-20291: Fix MSVC warnings in getargs.c (GH-27211)Ken Jin2021-07-171-1/+2
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Pablo Galindo Salgado2021-07-161-4/+9
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Pablo Galindo Salgado2021-07-161-0/+3
* Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...Pablo Galindo Salgado2021-07-161-6/+1
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-163-39/+277
* bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)Mark Shannon2021-07-161-1/+6
* bpo-43950: make BinOp specializations more reliable (GH-27126)Batuhan Taskaya2021-07-151-1/+1
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-153-4317/+4361
* Remove sys._deactivate_opcache() now that is not needed (GH-27154)Pablo Galindo Salgado2021-07-153-49/+1
* bpo-44622: Set line number of END_ASYNC_FOR to match that of iterator. (GH-27...Mark Shannon2021-07-151-1/+3
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-153-12/+174
* bpo-44589: raise a SyntaxError when mapping patterns have duplicate literal k...Jack DeVries2021-07-151-4/+41
* bpo-44616: Mark all clean up instructions at end of named exception block as ...Mark Shannon2021-07-142-5/+4
* bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...Serhiy Storchaka2021-07-132-7/+16
* bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)Batuhan Taskaya2021-07-121-41/+225
* bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)Mark Shannon2021-07-081-4/+2
* bpo-44581: Don't execute quickened instructions if tracing is on (GH-27064)Mark Shannon2021-07-081-1/+9
* bpo-43895: Remove an unnecessary cache of shared object handles (GH-25487)Ian Henriksen2021-07-071-22/+0
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-071-1/+20
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-077-7302/+7261
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-042-7/+68
* bpo-43950: optimize column table assembling with pre-sizing object (GH-26997)Batuhan Taskaya2021-07-021-6/+13
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-026-5138/+7118
* bpo-44313: bump up magic (#26983)Batuhan Taskaya2021-07-011-1/+1
* Add file describing how to add or modify specialized families of instructions...Mark Shannon2021-07-012-0/+135
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-304-213/+236
* Fix compiler errors for unused variables in marshal.c (GH-26977)Pablo Galindo2021-06-301-2/+0