/usr/lib/python2.6/site-packages/stevedore/tests
Edit: /usr/lib/python2.6/site-packages/stevedore/tests/manager.pyc (2387B)
Ñò
yDVc @ sZ d Z d d k Z d d k Z d d k l Z e i e ƒ Z d e i f d „ ƒ YZ d S( s? TestExtensionManager
Extension manager used only for testing.
iÿÿÿÿN( t extensiont TestExtensionManagerc B s, e Z d Z d e d h d „ Z d „ Z RS( s3 ExtensionManager that is explicitly initialized for tests.
.. deprecated:: 0.13
Use the :func:`make_test_instance` class method of the class
being replaced by the test instance instead of using this class
directly.
:param extensions: Pre-configured Extension instances to use
instead of loading them from entry points.
:type extensions: list of :class:`~stevedore.extension.Extension`
:param namespace: The namespace for the entry points.
:type namespace: str
:param invoke_on_load: Boolean controlling whether to invoke the
object returned by the entry point after the driver is loaded.
:type invoke_on_load: bool
:param invoke_args: Positional arguments to pass when invoking
the object returned by the entry point. Only used if invoke_on_load
is True.
:type invoke_args: tuple
:param invoke_kwds: Named arguments to pass when invoking
the object returned by the entry point. Only used if invoke_on_load
is True.
:type invoke_kwds: dict
t testc C s<