Lines Matching defs:split
57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip
87 """Split a doc string into a synopsis line (if any) and the rest."""
88 lines = split(strip(doc), '\n')
111 text = join(split(text, pairs[0]), pairs[1])
143 """Split sequence s via predicate, and return pair ([true], [false]).
208 result = strip(split(line, '"""')[0])
311 for part in split(path, '.')[1:]:
390 methodname = 'repr_' + join(split(type(x).__name__), '_')
590 parts = split(name, '.')
967 methodname = 'repr_' + join(split(type(x).__name__), '_')
1004 lines = split(text, '\n')
1397 lines = split(plain(text), '\n')
1468 parts = [part for part in split(path, '.') if part]
1789 self.listmodules(split(request)[1])
1880 'Related help topics: ' + join(split(xrefs), ', ') + '\n')
1955 desc = split(__import__(modname).__doc__ or '', '\n')[0]
2229 modname = split(self.result_lst.get(selection[0]))[0]