Home | History | Annotate | Download | only in python2.7

Lines Matching full:__set__

84     An object passing this test has a __get__ attribute but not a __set__
93 and not hasattr(object, "__set__") # else it's a data descriptor
101 Data descriptors have both a __get__ and a __set__ attribute. Examples are
106 return (hasattr(object, "__set__") and hasattr(object, "__get__"))