Home | History | Annotate | Download | only in support

Lines Matching refs:split

66                         e.value = e.value.split()
192 for s in options.split():
285 self += source.split() if hasattr(source, 'split') else source
291 source = [s for s in re.split('\s+|(\S*<.*?>)', source) if s]
457 split = re.split('\n[ \t]*(-\S+?)', '\n' + s)[1:]
458 split = [s1 + s2 for s1, s2 in zip(split[::2], split[1::2])]
459 options = [Option.parse(s) for s in split if s.startswith('-')]
472 pu = section.split()