You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/prompt_toolkit/output/__init__.py

19 lines
378 B

from __future__ import unicode_literals
from .base import Output, DummyOutput
from .defaults import create_output, get_default_output, set_default_output
from .color_depth import ColorDepth
__all__ = [
# Base.
'Output',
'DummyOutput',
# Color depth.
'ColorDepth',
# Defaults.
'create_output',
'get_default_output',
'set_default_output',
]