This file is indexed.

/usr/lib/python3/dist-packages/pydap/tests/test_pydap.py is in python3-pydap 3.2.2+ds1-1ubuntu1.

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
"""Test Pydap namespace."""

import pydap
import unittest


class TestNamespace(unittest.TestCase):

    """Test Pydap namespace."""

    def test_namespace(self):
        """Test the namespace."""
        self.assertEqual(pydap.__name__, "pydap")