class documentation

class Splitter(object): (source)

View In Hierarchy

object that will split a string with the given arguments for each call >>> s = Splitter(',') >>> s('hello, world, this is your, master calling') ['hello', ' world', ' this is your', ' master calling']

Method __call__ Undocumented
Method __init__ Undocumented
Instance Variable args Undocumented
def __call__(self, s): (source)

Undocumented

def __init__(self, *args): (source)

Undocumented

Undocumented