inspect.ismemberdescriptor(object)
Return true if the object is a member descriptor.
CPython implementation detail: Member descriptors are attributes defined in extension modules via PyMemberDef
structures. For Python implementations without such types, this method will always return False
.
Please login to continue.