Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/prompt_toolkit/output/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1from __future__ import annotations 

2 

3from .base import DummyOutput, Output 

4from .color_depth import ColorDepth 

5from .defaults import create_output 

6 

7__all__ = [ 

8 # Base. 

9 "Output", 

10 "DummyOutput", 

11 # Color depth. 

12 "ColorDepth", 

13 # Defaults. 

14 "create_output", 

15]