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

Lines Matching refs:Attribute

84     An object passing this test has a __get__ attribute but not a __set__
85 attribute, but beyond that the set of attributes varies. __name__ is
91 im_func attribute (etc) when an object passes ismethod()."""
101 Data descriptors have both a __get__ and a __set__ attribute. Examples are
261 Attribute = namedtuple('Attribute', 'name kind defining_class object')
264 """Return list of attribute-descriptor tuples.
271 1. The kind of attribute this is, one of these strings:
278 2. The class which defined this attribute (a class).
327 result.append(Attribute(name, kind, homecls, obj))