Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/urllib3/_version.py: 71%

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

14 statements  

1# file generated by setuptools-scm 

2# don't change, don't track in version control 

3 

4__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"] 

5 

6TYPE_CHECKING = False 

7if TYPE_CHECKING: 

8 from typing import Tuple 

9 from typing import Union 

10 

11 VERSION_TUPLE = Tuple[Union[int, str], ...] 

12else: 

13 VERSION_TUPLE = object 

14 

15version: str 

16__version__: str 

17__version_tuple__: VERSION_TUPLE 

18version_tuple: VERSION_TUPLE 

19 

20__version__ = version = '2.5.0' 

21__version_tuple__ = version_tuple = (2, 5, 0)