This file is indexed.

/usr/lib/python2.7/dist-packages/billiard/tests/test_package.py is in python-billiard 3.3.0.22-1.

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
from __future__ import absolute_import

import billiard

from .utils import Case


class test_billiard(Case):

    def test_has_version(self):
        self.assertTrue(billiard.__version__)
        self.assertIsInstance(billiard.__version__, str)