diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-11-17 23:09:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 23:09:18 (GMT) |
commit | b629fdd88ac1c20439b49cbc9aa33b27cd5f6daf (patch) | |
tree | c94c9632b3c000aeba65cc019f0547ca548c8548 /Misc | |
parent | 8555dee5aeedb2f37ee2e2216ef8707be0fc1d9d (diff) | |
download | cpython-b629fdd88ac1c20439b49cbc9aa33b27cd5f6daf.zip cpython-b629fdd88ac1c20439b49cbc9aa33b27cd5f6daf.tar.gz cpython-b629fdd88ac1c20439b49cbc9aa33b27cd5f6daf.tar.bz2 |
GH-99298: Clean up attribute specializations (GH-99398)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-11-10-16-53-40.gh-issue-99298.HqRJES.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-11-10-16-53-40.gh-issue-99298.HqRJES.rst b/Misc/NEWS.d/next/Core and Builtins/2022-11-10-16-53-40.gh-issue-99298.HqRJES.rst new file mode 100644 index 0000000..79a5b3b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-11-10-16-53-40.gh-issue-99298.HqRJES.rst @@ -0,0 +1,3 @@ +Remove the remaining error paths for attribute specializations, and refuse +to specialize attribute accesses on types that haven't had +:c:func:`PyType_Ready` called on them yet. |