diff options
author | Anthony Sottile <asottile@umich.edu> | 2020-01-05 17:03:56 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2020-01-05 17:03:56 (GMT) |
commit | b121a4a45ff4bab8812a9b26ceffe5ad642f5d5a (patch) | |
tree | bb93879df6053614cb012368a1879d5cd96b4e72 /Misc/NEWS.d | |
parent | 5ea7bb25e3b192d6c49a49c9e3b316f8559602aa (diff) | |
download | cpython-b121a4a45ff4bab8812a9b26ceffe5ad642f5d5a.zip cpython-b121a4a45ff4bab8812a9b26ceffe5ad642f5d5a.tar.gz cpython-b121a4a45ff4bab8812a9b26ceffe5ad642f5d5a.tar.bz2 |
Fix constant folding optimization for positional only arguments (GH-17837)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-01-05-06-55-52.bpo-39216.74jLh9.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-05-06-55-52.bpo-39216.74jLh9.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-05-06-55-52.bpo-39216.74jLh9.rst new file mode 100644 index 0000000..971b065 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-05-06-55-52.bpo-39216.74jLh9.rst @@ -0,0 +1,2 @@ +Fix constant folding optimization for positional only arguments - by Anthony +Sottile. |