Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pip/__init__.py: 60%

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 

3__version__ = "26.1.dev0" 

4 

5 

6def main(args: list[str] | None = None) -> int: 

7 """This is an internal API only meant for use by pip's own console scripts. 

8 

9 For additional details, see https://github.com/pypa/pip/issues/7498. 

10 """ 

11 from pip._internal.utils.entrypoints import _wrapper 

12 

13 return _wrapper(args)