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

Lines Matching refs:attribute

52         get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute