|
7 | 7 | # is also available online at http://www.enthought.com/licenses/BSD.txt |
8 | 8 | # |
9 | 9 | # Thanks for using Enthought open source! |
| 10 | + |
| 11 | +""" API for the apptools.naming subpackage. |
| 12 | +
|
| 13 | +- :class:`~.Address` |
| 14 | +- :class:`~.Binding` |
| 15 | +- :class:`~.Context` |
| 16 | +- :class:`~.DynamicContext` |
| 17 | +- :class:`~.DirContext` |
| 18 | +- :func:`~.InitialContext` |
| 19 | +- :class:`~.InitialContextFactory` |
| 20 | +- :class:`~.NamingEvent` |
| 21 | +- :attr:`~.naming_manager` |
| 22 | +- :class:`~.ObjectFactory` |
| 23 | +- :class:`~.ObjectSerializer` |
| 24 | +- :class:`~.PyContext` |
| 25 | +- :class:`~.PyObjectFactory` |
| 26 | +- :class:`~.PyFSContext` |
| 27 | +- :class:`~.PyFSContextFactory` |
| 28 | +- :class:`~.PyFSInitialContextFactory` |
| 29 | +- :class:`~.PyFSObjectFactory` |
| 30 | +- :class:`~.PyFSStateFactory` |
| 31 | +- :class:`~.Reference` |
| 32 | +- :class:`~.Referenceable` |
| 33 | +- :class:`~.ReferenceableStateFactory` |
| 34 | +- :class:`~.StateFactory` |
| 35 | +
|
| 36 | +Custom Exceptions |
| 37 | +----------------- |
| 38 | +
|
| 39 | +- :class:`~.NamingError` |
| 40 | +- :class:`~.InvalidNameError` |
| 41 | +- :class:`~.NameAlreadyBoundError` |
| 42 | +- :class:`~.NameNotFoundError` |
| 43 | +- :class:`~.NotContextError` |
| 44 | +- :class:`~.OperationNotSupportedError` |
| 45 | +""" |
| 46 | + |
10 | 47 | from .exception import NamingError, InvalidNameError, NameAlreadyBoundError |
11 | 48 | from .exception import NameNotFoundError, NotContextError |
12 | 49 | from .exception import OperationNotSupportedError |
|
0 commit comments