summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-09-06 11:11:38 (GMT)
committerGitHub <noreply@github.com>2022-09-06 11:11:38 (GMT)
commitcd0ff9bd14d6a60e841d10f8415827db556ae622 (patch)
tree44b5add368d946a354d4c79b90c3026e5a8c553f /Misc
parentf177f6f29b069f522a0b3ba44eaae19852b6d2b0 (diff)
downloadcpython-cd0ff9bd14d6a60e841d10f8415827db556ae622.zip
cpython-cd0ff9bd14d6a60e841d10f8415827db556ae622.tar.gz
cpython-cd0ff9bd14d6a60e841d10f8415827db556ae622.tar.bz2
GH-93911: Fix `LOAD_ATTR_PROPERTY` caches (GH-96519)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-09-02-16-47-52.gh-issue-93911.vF-GWe.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-09-02-16-47-52.gh-issue-93911.vF-GWe.rst b/Misc/NEWS.d/next/Core and Builtins/2022-09-02-16-47-52.gh-issue-93911.vF-GWe.rst
new file mode 100644
index 0000000..b8dc043
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-09-02-16-47-52.gh-issue-93911.vF-GWe.rst
@@ -0,0 +1,2 @@
+Fix an issue that could prevent :opcode:`LOAD_ATTR` from specializing
+properly when accessing properties.