Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/prompt_toolkit/data_structures.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

9 statements  

1from __future__ import annotations 

2 

3from typing import NamedTuple 

4 

5__all__ = [ 

6 "Point", 

7 "Size", 

8] 

9 

10 

11class Point(NamedTuple): 

12 x: int 

13 y: int 

14 

15 

16class Size(NamedTuple): 

17 rows: int 

18 columns: int