Package Pyblio :: Module Registry :: Class RIP
[hide private]
[frames] | no frames]

Class RIP

source code

object --+
         |
        RIP
Known Subclasses:
AdapterRIP

A RIP object represents a dynamic class that can be loaded on demand, and that has been registered via the Registry system.

These objects are usually not instanciated by the user, but returned by get.

Instance Methods [hide private]
 
__init__(self, schema, category, name)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__call__(self)
When the RIP is called, it returns the dynamic class it refers to, or raises an ImportError exception.
source code
 
help(self)
Return some help associated with the corresponding dynamic class.
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, schema, category, name)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)

help(self)

source code 

Return some help associated with the corresponding dynamic class.

Warning: this forces loading of the class.