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

Lines Matching refs:kind

237     """Return true if the object is any kind of function or method."""
261 Attribute = namedtuple('Attribute', 'name kind defining_class object')
271 1. The kind of attribute this is, one of these strings:
309 kind = "static method"
311 kind = "class method"
313 kind = "property"
315 kind = "method"
317 kind = "data"
322 kind = "method"
324 kind = "data"
327 result.append(Attribute(name, kind, homecls, obj))
447 for suffix, mode, kind in imp.get_suffixes():