This file is indexed.

/usr/lib/python3/dist-packages/pip/exceptions.py is in python3-pip 1.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""Exceptions used throughout package"""


class InstallationError(Exception):
    """General exception during installation"""


class UninstallationError(Exception):
    """General exception during uninstallation"""


class DistributionNotFound(InstallationError):
    """Raised when a distribution cannot be found to satisfy a requirement"""


class BestVersionAlreadyInstalled(Exception):
    """Raised when the most up-to-date version of a package is already
    installed.
    """


class BadCommand(Exception):
    """Raised when virtualenv or a command is not found"""


class CommandError(Exception):
    """Raised when there is an error in command-line arguments"""