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