This file is indexed.

/usr/lib/python3/dist-packages/dbfread/exceptions.py is in python3-dbfread 2.0.7-2.

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
class DBFNotFound(IOError):
    """Raised if the DBF file was not found."""
    pass

class MissingMemoFile(IOError):
    """Raised if the corresponding memo file was not found."""

__all__ = ['DBFNotFound', 'MissingMemoFile']