Package param :: Class Selector
[hide private]
[frames] | no frames]

Class Selector

source code


Parameter whose value is set to some form of one of the possibilities in its range.

Subclasses must implement get_range().

Nested Classes [hide private]

Inherited from parameterized.Parameter: __metaclass__

Instance Methods [hide private]
 
get_range(self) source code

Inherited from parameterized.Parameter: __delete__, __get__, __getstate__, __init__, __set__, __setstate__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __abstract = True
bool(x) -> bool
  __classdoc = '\n Parameter whose value is set to some form ...
str(object) -> string
Properties [hide private]

Inherited from parameterized.Parameter: constant, default, doc, instantiate, pickle_default_value, precedence, readonly

Inherited from object: __class__

Class Variable Details [hide private]

__abstract

bool(x) -> bool

Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.

Value:
True

__classdoc

str(object) -> string

Return a nice string representation of the object. If the argument is a string, the return value is the same object.

Value:
'''
    Parameter whose value is set to some form of one of the
    possibilities in its range.

    Subclasses must implement get_range().
    '''