Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/importlib_resources/compat/py38.py: 83%

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

6 statements  

1import os 

2import sys 

3 

4from typing import Union 

5 

6 

7if sys.version_info >= (3, 9): 

8 StrPath = Union[str, os.PathLike[str]] 

9else: 

10 # PathLike is only subscriptable at runtime in 3.9+ 

11 StrPath = Union[str, "os.PathLike[str]"]