Use an instance of me to let functions within methods have easy access to stuff defined in the main method body.

Method __init__ Undocumented
Method __nonzero__ Undocumented
Method pop Reverts my x to its default None starting value and returns the value it had.
Method increment If my x attribute is an int or float, adds one to its value and returns the new value.
Method __call__ Call this with the new value of x as the first (possibly only) argument. If there are no arguments, x remains unchanged. In either case, the ending value is returned.
def __init__(self, initialValue=None):
Undocumented
def __nonzero__(self):
Undocumented
def pop(self):

Reverts my x to its default None starting value and returns the value it had.

def increment(self):

If my x attribute is an int or float, adds one to its value and returns the new value.

If x cannot be incremented, an exception is raised.

def __call__(self, *args):

Call this with the new value of x as the first (possibly only) argument. If there are no arguments, x remains unchanged. In either case, the ending value is returned.

API Documentation for pingspice, generated by pydoctor at 2021-09-18 08:41:11.