Package rosh :: Package impl :: Module param :: Class ParamNS
[frames] | no frames]

Class ParamNS

source code

         object --+    
                  |    
namespace.Namespace --+
                      |
                     ParamNS

Instance Methods
 
__init__(self, name, config)
ctor.
source code
 
__repr__(self)
repr(x)
source code
 
__str__(self)
str(x)
source code
 
__getitem__(self, key)
Dictionary-style accessor
source code
 
__setitem__(self, key, value) source code
 
__delitem__(self, key) source code
 
__setattr__(self, key, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
__delattr__(self, key)
x.__delattr__('name') <==> del x.name
source code
 
__contains__(self, key) source code
 
__call__(self)
Returns: current parameter value
source code
 
__getattribute__(self, key)
x.__getattribute__('name') <==> x.name (Inherited from rosh.impl.namespace.Namespace)
source code
 
__iter__(self) (Inherited from rosh.impl.namespace.Namespace) source code

Inherited from object: __format__, __hash__, __new__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, name, config)
(Constructor)

source code 

ctor.

Parameters:
Overrides: object.__init__

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__getitem__(self, key)
(Indexing operator)

source code 

Dictionary-style accessor

Overrides: namespace.Namespace.__getitem__
(inherited documentation)

__setattr__(self, key, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

__delattr__(self, key)

source code 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__
(inherited documentation)

__call__(self)
(Call operator)

source code 
Returns:
current parameter value