Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-02-26 06:33 +0000

1# Expose a limited set of classes and functions so callers outside of 

2# the vcs package don't need to import deeper than `pip._internal.vcs`. 

3# (The test directory may still need to import from a vcs sub-package.) 

4# Import all vcs modules to register each VCS in the VcsSupport object. 

5import pip._internal.vcs.bazaar 

6import pip._internal.vcs.git 

7import pip._internal.vcs.mercurial 

8import pip._internal.vcs.subversion # noqa: F401 

9from pip._internal.vcs.versioncontrol import ( # noqa: F401 

10 RemoteNotFoundError, 

11 RemoteNotValidError, 

12 is_url, 

13 make_vcs_requirement_url, 

14 vcs, 

15)