@@ -80,11 +80,11 @@ def find_all_matches(finder, ireq, pre=False):
8080 ireq.
8181
8282 :param finder: A package finder for discovering matching candidates.
83- :type finder: :class:`~pip._internal.index.PackageFinder`
83+ :type finder: :class:`~pipenv.patched. pip._internal.index.PackageFinder`
8484 :param ireq: An install requirement.
85- :type ireq: :class:`~pip._internal.req.req_install.InstallRequirement`
85+ :type ireq: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
8686 :return: A list of matching candidates.
87- :rtype: list[:class:`~pip._internal.index.InstallationCandidate`]
87+ :rtype: list[:class:`~pipenv.patched. pip._internal.index.InstallationCandidate`]
8888 """
8989
9090 candidates = clean_requires_python (finder .find_all_candidates (ireq .name ))
@@ -192,7 +192,7 @@ def get_deps(self, candidate):
192192 """Get the dependencies of the supplied candidate.
193193
194194 :param candidate: An installrequirement
195- :type candidate: :class:`~pip._internal.req.req_install.InstallRequirement`
195+ :type candidate: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
196196 :return: A list of abstract dependencies
197197 :rtype: list[:class:`~requirementslib.models.dependency.AbstractDependency`]
198198 """
@@ -301,11 +301,11 @@ def get_dependencies(ireq, sources=None, parent=None):
301301 """Get all dependencies for a given install requirement.
302302
303303 :param ireq: A single InstallRequirement
304- :type ireq: :class:`~pip._internal.req.req_install.InstallRequirement`
304+ :type ireq: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
305305 :param sources: Pipfile-formatted sources, defaults to None
306306 :type sources: list[dict], optional
307307 :param parent: The parent of this list of dependencies, defaults to None
308- :type parent: :class:`~pip._internal.req.req_install.InstallRequirement`
308+ :type parent: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
309309 :return: A set of dependency lines for generating new InstallRequirements.
310310 :rtype: set(str)
311311 """
@@ -335,7 +335,7 @@ def get_dependencies_from_wheel_cache(ireq):
335335 cache.
336336
337337 :param ireq: A single InstallRequirement
338- :type ireq: :class:`~pip._internal.req.req_install.InstallRequirement`
338+ :type ireq: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
339339 :return: A set of dependency lines for generating new InstallRequirements.
340340 :rtype: set(str) or None
341341 """
@@ -362,7 +362,7 @@ def get_dependencies_from_json(ireq):
362362 api.
363363
364364 :param ireq: A single InstallRequirement
365- :type ireq: :class:`~pip._internal.req.req_install.InstallRequirement`
365+ :type ireq: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
366366 :return: A set of dependency lines for generating new InstallRequirements.
367367 :rtype: set(str) or None
368368 """
@@ -412,7 +412,7 @@ def get_dependencies_from_cache(ireq):
412412 dependency cache.
413413
414414 :param ireq: A single InstallRequirement
415- :type ireq: :class:`~pip._internal.req.req_install.InstallRequirement`
415+ :type ireq: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
416416 :return: A set of dependency lines for generating new InstallRequirements.
417417 :rtype: set(str) or None
418418 """
@@ -516,7 +516,7 @@ def get_dependencies_from_index(dep, sources=None, pip_options=None, wheel_cache
516516 resolver.
517517
518518 :param dep: A single InstallRequirement
519- :type dep: :class:`~pip._internal.req.req_install.InstallRequirement`
519+ :type dep: :class:`~pipenv.patched. pip._internal.req.req_install.InstallRequirement`
520520 :param sources: Pipfile-formatted sources, defaults to None
521521 :type sources: list[dict], optional
522522 :return: A set of dependency lines for generating new InstallRequirements.
@@ -555,9 +555,9 @@ def get_pip_options(args=None, sources=None, pip_command=None):
555555 :param sources: A list of pipfile-formatted sources, defaults to None
556556 :param sources: list[dict], optional
557557 :param pip_command: A pre-built pip command instance
558- :type pip_command: :class:`~pip._internal.cli.base_command.Command`
558+ :type pip_command: :class:`~pipenv.patched. pip._internal.cli.base_command.Command`
559559 :return: An instance of pip_options using the supplied arguments plus sane defaults
560- :rtype: :class:`~pip._internal.cli.cmdoptions`
560+ :rtype: :class:`~pipenv.patched. pip._internal.cli.cmdoptions`
561561 """
562562
563563 if not pip_command :
@@ -579,11 +579,11 @@ def get_finder(sources=None, pip_command=None, pip_options=None):
579579 :param sources: A list of pipfile-formatted sources, defaults to None
580580 :param sources: list[dict], optional
581581 :param pip_command: A pip command instance, defaults to None
582- :type pip_command: :class:`~pip._internal.cli.base_command.Command`
582+ :type pip_command: :class:`~pipenv.patched. pip._internal.cli.base_command.Command`
583583 :param pip_options: A pip options, defaults to None
584- :type pip_options: :class:`~pip._internal.cli.cmdoptions`
584+ :type pip_options: :class:`~pipenv.patched. pip._internal.cli.cmdoptions`
585585 :return: A package finder
586- :rtype: :class:`~pip._internal.index.PackageFinder`
586+ :rtype: :class:`~pipenv.patched. pip._internal.index.PackageFinder`
587587 """
588588
589589 if not pip_command :
@@ -603,12 +603,12 @@ def start_resolver(finder=None, session=None, wheel_cache=None):
603603 """Context manager to produce a resolver.
604604
605605 :param finder: A package finder to use for searching the index
606- :type finder: :class:`~pip._internal.index.PackageFinder`
606+ :type finder: :class:`~pipenv.patched. pip._internal.index.PackageFinder`
607607 :param :class:`~requests.Session` session: A session instance
608- :param :class:`~pip._internal.cache.WheelCache` wheel_cache: A pip WheelCache instance
608+ :param :class:`~pipenv.patched. pip._internal.cache.WheelCache` wheel_cache: A pip WheelCache instance
609609 :return: A 3-tuple of finder, preparer, resolver
610- :rtype: (:class:`~pip._internal.operations.prepare.RequirementPreparer`,
611- :class:`~pip._internal.resolve.Resolver`)
610+ :rtype: (:class:`~pipenv.patched. pip._internal.operations.prepare.RequirementPreparer`,
611+ :class:`~pipenv.patched. pip._internal.resolve.Resolver`)
612612 """
613613
614614 pip_command = get_pip_command ()
0 commit comments