diff options
author | Yurii Karabas <1998uriyyo@gmail.com> | 2020-12-30 09:51:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 09:51:24 (GMT) |
commit | c56387f80c5aabf8100ceaffe365cc004ce0d7e0 (patch) | |
tree | c45546d1a311c87f58e9721a1bd232096ff07335 /Misc | |
parent | ba0e49a4648e727d1a16b3ce479499eb39f22311 (diff) | |
download | cpython-c56387f80c5aabf8100ceaffe365cc004ce0d7e0.zip cpython-c56387f80c5aabf8100ceaffe365cc004ce0d7e0.tar.gz cpython-c56387f80c5aabf8100ceaffe365cc004ce0d7e0.tar.bz2 |
bpo-27794: Add `name` attribute to `property` class (GH-23967)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-12-27-18-07-43.bpo-27794.sxgfGi.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-12-27-18-07-43.bpo-27794.sxgfGi.rst b/Misc/NEWS.d/next/Core and Builtins/2020-12-27-18-07-43.bpo-27794.sxgfGi.rst new file mode 100644 index 0000000..0f66b4e --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-12-27-18-07-43.bpo-27794.sxgfGi.rst @@ -0,0 +1,3 @@ +Improve the error message for failed writes/deletes to property objects. +When possible, the attribute name is now shown. Patch provided by +Yurii Karabas. |