summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGéry Ogam <gery.ogam@gmail.com>2022-05-05 13:37:26 (GMT)
committerGitHub <noreply@github.com>2022-05-05 13:37:26 (GMT)
commita95138b2c5a3ba3d9a1a635566e22e5843b6a45c (patch)
tree9df22636e46deb06e0c8897ed0d072c440c42a7b /Misc
parent43b135f94ebf3e6e84ddb0f75ed8510b96a610e4 (diff)
downloadcpython-a95138b2c5a3ba3d9a1a635566e22e5843b6a45c.zip
cpython-a95138b2c5a3ba3d9a1a635566e22e5843b6a45c.tar.gz
cpython-a95138b2c5a3ba3d9a1a635566e22e5843b6a45c.tar.bz2
bpo-43857: Improve the AttributeError message when deleting a missing attribute (#25424)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-05-04-11-37-20.bpo-43857.WuX8p3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-05-04-11-37-20.bpo-43857.WuX8p3.rst b/Misc/NEWS.d/next/Core and Builtins/2022-05-04-11-37-20.bpo-43857.WuX8p3.rst
new file mode 100644
index 0000000..0db4333
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-05-04-11-37-20.bpo-43857.WuX8p3.rst
@@ -0,0 +1,2 @@
+Improve the :exc:`AttributeError` message when deleting a missing attribute.
+Patch by Géry Ogam.