Package dynamic_reconfigure :: Module encoding :: Class Config

Class Config

source code

object --+    
         |    
      dict --+
             |
            Config

Instance Methods
new empty dictionary

__init__(self, *args, **kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__getstate__(self) source code
 
__setstate__(self, items) source code
 
__repr__(self)
repr(x)
source code
 
__setitem__(self, key, value)
x[i]=y
source code
 
__getitem__(self, name)
x[y]
source code
 
__delitem__(self, name)
del x[y]
source code
 
__getattr__(self, name)
x[y]
source code
 
__setattr__(self, key, value)
x[i]=y
source code
a shallow copy of D
copy(self) source code
 
__deepcopy__(self, memo) source code

Inherited from dict: __cmp__, __contains__, __eq__, __ge__, __getattribute__, __gt__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __sizeof__, clear, fromkeys, get, has_key, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values, viewitems, viewkeys, viewvalues

Inherited from object: __delattr__, __format__, __reduce__, __reduce_ex__, __str__, __subclasshook__

Class Variables

Inherited from dict: __hash__

Properties

Inherited from object: __class__

Method Details

__init__(self, *args, **kwargs)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Returns:
new empty dictionary

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__setitem__(self, key, value)
(Index assignment operator)

source code 

x[i]=y

Overrides: dict.__setitem__
(inherited documentation)

__getitem__(self, name)
(Indexing operator)

source code 

x[y]

Overrides: dict.__getitem__
(inherited documentation)

__delitem__(self, name)
(Index deletion operator)

source code 

del x[y]

Overrides: dict.__delitem__
(inherited documentation)

__setattr__(self, key, value)

source code 

x[i]=y

Overrides: object.__setattr__
(inherited documentation)

copy(self)

source code 
Returns: a shallow copy of D
Overrides: dict.copy
(inherited documentation)