Package rosh :: Package impl :: Module msg :: Class MsgPackage
[frames] | no frames]

Class MsgPackage

source code

         object --+    
                  |    
namespace.Namespace --+
                      |
                     MsgPackage

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
 
__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: __delattr__, __format__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, name, config)
(Constructor)

source code 

ctor.

Parameters:
  • config (NamespaceConfig) - Namespace configuration instance with additional 'listener' attribute.
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)