summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-07-18 17:10:22 (GMT)
committerGitHub <noreply@github.com>2022-07-18 17:10:22 (GMT)
commitdaf68ba92f315bfd239a0c993f9f683fb90325fb (patch)
tree41e81bc487e49cdb08ea51dc13801d983209a431 /Misc
parentc41d4d09172bf28ba9e5760498bd494a3521a123 (diff)
downloadcpython-daf68ba92f315bfd239a0c993f9f683fb90325fb.zip
cpython-daf68ba92f315bfd239a0c993f9f683fb90325fb.tar.gz
cpython-daf68ba92f315bfd239a0c993f9f683fb90325fb.tar.bz2
GH-94822: Don't specialize when metaclasses are involved (GH-94892)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-07-15-22-16-08.gh-issue-94822.zRRzBN.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-07-15-22-16-08.gh-issue-94822.zRRzBN.rst b/Misc/NEWS.d/next/Core and Builtins/2022-07-15-22-16-08.gh-issue-94822.zRRzBN.rst
new file mode 100644
index 0000000..5b24918
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-07-15-22-16-08.gh-issue-94822.zRRzBN.rst
@@ -0,0 +1,2 @@
+Fix an issue where lookups of metaclass descriptors may be ignored when an
+identically-named attribute also exists on the class itself.