diff options
author | Aaron Hall, MBA <aaronchall@yahoo.com> | 2018-05-20 23:46:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-05-20 23:46:42 (GMT) |
commit | 4054b172ab59054715a2aaf4979bd84ac23e3ada (patch) | |
tree | e21f94afd65ee1cd88e011649fd6147f03567a12 /Misc/NEWS.d | |
parent | aef639f62677f8a342af24e9c19f0503b0d1e36e (diff) | |
download | cpython-4054b172ab59054715a2aaf4979bd84ac23e3ada.zip cpython-4054b172ab59054715a2aaf4979bd84ac23e3ada.tar.gz cpython-4054b172ab59054715a2aaf4979bd84ac23e3ada.tar.bz2 |
bpo-26103: Fix inspect.isdatadescriptor() and a data descriptor definition. (GH-1959)
Look for '__set__' or '__delete__'.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-05-14-09-07-14.bpo-26103._zU8E2.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-14-09-07-14.bpo-26103._zU8E2.rst b/Misc/NEWS.d/next/Library/2018-05-14-09-07-14.bpo-26103._zU8E2.rst new file mode 100644 index 0000000..cb4c41b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-05-14-09-07-14.bpo-26103._zU8E2.rst @@ -0,0 +1,2 @@ +Correct ``inspect.isdatadescriptor`` to look for ``__set__`` or +``__delete__``. Patch by Aaron Hall. |