mirror of https://github.com/python/cpython
Optimize func(*tuple) function call
Issue #26802: Optimize function calls only using unpacking like "func(*tuple)" (no other positional argument, no keyword): avoid copying the tuple. Patch written by Joe Jevnik.
This commit is contained in:
parent
201c4ecf18
commit
0b2e98d53d
|
@ -10,6 +10,10 @@ Release date: tba
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #26802: Optimize function calls only using unpacking like
|
||||||
|
``func(*tuple)`` (no other positional argument, no keyword): avoid copying
|
||||||
|
the tuple. Patch written by Joe Jevnik.
|
||||||
|
|
||||||
- Issue #26659: Make the builtin slice type support cycle collection.
|
- Issue #26659: Make the builtin slice type support cycle collection.
|
||||||
|
|
||||||
- Issue #26718: super.__init__ no longer leaks memory if called multiple times.
|
- Issue #26718: super.__init__ no longer leaks memory if called multiple times.
|
||||||
|
|
Loading…
Reference in New Issue