summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-03-13 10:34:54 (GMT)
committerGitHub <noreply@github.com>2023-03-13 10:34:54 (GMT)
commit233e32f93614255bf5fc7c93cd98af453e58cc98 (patch)
tree9eb812f9894064fb34f5e2ee14a019ec4a58da32 /Misc
parent78e4e6c3d71980d4e6687f07afa6ddfc83e29b04 (diff)
downloadcpython-233e32f93614255bf5fc7c93cd98af453e58cc98.zip
cpython-233e32f93614255bf5fc7c93cd98af453e58cc98.tar.gz
cpython-233e32f93614255bf5fc7c93cd98af453e58cc98.tar.bz2
GH-102300: Reuse objects with refcount == 1 in float specialized binary ops. (GH-102301)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-02-27-15-48-31.gh-issue-102300.8o-_Mt.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-02-27-15-48-31.gh-issue-102300.8o-_Mt.rst b/Misc/NEWS.d/next/Core and Builtins/2023-02-27-15-48-31.gh-issue-102300.8o-_Mt.rst
new file mode 100644
index 0000000..4227014
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-02-27-15-48-31.gh-issue-102300.8o-_Mt.rst
@@ -0,0 +1 @@
+Reuse operands with refcount of 1 in float specializations of BINARY_OP.