class documentation

class SomeClass: (source)

View In Hierarchy

Dummy class for usage.flagFunction tests.

Method manyArgs A multiple arguments method to be tested by usage.flagFunction.
Method noArg A no argument method to be tested by usage.flagFunction.
Method oneArg A one argument method to be tested by usage.flagFunction.
def manyArgs(self, a, b, c): (source)

A multiple arguments method to be tested by usage.flagFunction.

Parameters
aa useless argument to satisfy the function's signature.
ba useless argument to satisfy the function's signature.
ca useless argument to satisfy the function's signature.
def noArg(self): (source)

A no argument method to be tested by usage.flagFunction.

def oneArg(self, a): (source)

A one argument method to be tested by usage.flagFunction.

Parameters
aa useless argument to satisfy the function's signature.