Lines Matching refs:desc
1034 synop, desc = splitdoc(getdoc(object))
1052 if desc:
1053 result = result + self.section('DESCRIPTION', desc)
1507 desc = describe(object)
1510 desc += ' in ' + name[:name.rfind('.')]
1512 desc += ' in module ' + module.__name__
1526 desc += ' object'
1527 return title % desc + '\n\n' + text.document(object, name)
1901 def callback(path, modname, desc, modules=modules):
1955 desc = split(__import__(modname).__doc__ or '', '\n')[0]
1956 if find(lower(modname + ' - ' + desc), key) >= 0:
1957 callback(None, modname, desc)
1968 desc = source_synopsis(
1977 desc = (module.__doc__ or '').splitlines()[0]
1979 if find(lower(modname + ' - ' + desc), key) >= 0:
1980 callback(path, modname, desc)
1987 def callback(path, modname, desc):
1990 print modname, desc and '- ' + desc
2204 def update(self, path, modname, desc):
2208 modname + ' - ' + (desc or '(no description)'))