diff options
author | 2021-02-16 08:50:00 +0100 | |
---|---|---|
committer | 2021-02-16 08:50:00 +0100 | |
commit | 871eb4237b9be95263ca13ba8856e78344eb9eba (patch) | |
tree | 25e8e7ac21e5656233c0111593e0de37e304ce65 /Objects/descrobject.c | |
parent | bpo-43155: Add PyCMethod_New to PC/python3dll.c (GH-24500) (diff) | |
download | cpython-871eb4237b9be95263ca13ba8856e78344eb9eba.tar.gz cpython-871eb4237b9be95263ca13ba8856e78344eb9eba.tar.bz2 cpython-871eb4237b9be95263ca13ba8856e78344eb9eba.zip |
Diffstat (limited to 'Objects/descrobject.c')
-rw-r--r-- | Objects/descrobject.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 16c695a08f4..35fbffd914a 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -995,6 +995,11 @@ PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped) return (PyObject *)descr; } +int +PyDescr_IsData(PyObject *ob) +{ + return Py_TYPE(ob)->tp_descr_set != NULL; +} /* --- mappingproxy: read-only proxy for mappings --- */ |