1
2
3
4
5
6
7
8
9
10
11
12
| """Top-level package for outcome."""
|
| from ._impl import Error, Outcome, Value, acapture, capture
| from ._util import AlreadyUsedError, fixup_module_metadata
| from ._version import __version__
|
| __all__ = (
| 'Error', 'Outcome', 'Value', 'acapture', 'capture', 'AlreadyUsedError'
| )
|
| fixup_module_metadata(__name__, globals())
| del fixup_module_metadata
|
|