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

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  

1import sys 

2 

3 

4__all__ = ['ZipPath'] 

5 

6 

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

8 from zipfile import Path as ZipPath 

9else: 

10 from zipp import Path as ZipPath