This file is indexed.

/usr/lib/python3/dist-packages/dbfread/test_invalid_value.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
from .field_parser import InvalidValue

def test_repr():
    assert repr(InvalidValue(b'')) == "InvalidValue(b'')"

def test_type():
    assert isinstance(InvalidValue(b''), bytes)