summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-11-05 09:23:15 (GMT)
committerGitHub <noreply@github.com>2020-11-05 09:23:15 (GMT)
commit80449f243b13311d660eab3a751648029bcdd833 (patch)
treed1dcd63c3de31c148ff3b9faa25e3836a066fcbc /Misc
parent178695b7aee7a7aacd49a3086060e06347d1e556 (diff)
downloadcpython-80449f243b13311d660eab3a751648029bcdd833.zip
cpython-80449f243b13311d660eab3a751648029bcdd833.tar.gz
cpython-80449f243b13311d660eab3a751648029bcdd833.tar.bz2
bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-11-04-23-03-25.bpo-42266.G4hGDe.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-11-04-23-03-25.bpo-42266.G4hGDe.rst b/Misc/NEWS.d/next/Core and Builtins/2020-11-04-23-03-25.bpo-42266.G4hGDe.rst
new file mode 100644
index 0000000..a8598cf
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-11-04-23-03-25.bpo-42266.G4hGDe.rst
@@ -0,0 +1,3 @@
+Fixed a bug with the LOAD_ATTR opcode cache that was not respecting
+monkey-patching a class-level attribute to make it a descriptor. Patch by
+Pablo Galindo.