This file is indexed.

/usr/lib/python3/dist-packages/unittest2/test/test_unittest2_with.py is in python3-unittest2 1.1.0-6.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
13
14
15
16
17
import sys

import unittest2

if sys.version_info[:2] >= (2, 5):
    from unittest2.test._test_unittest2_with import *
else:

    class TestWith(unittest2.TestCase):

        @unittest2.skip('tests using with statement skipped on Python 2.4')
        def testWith(self):
            pass


if __name__ == '__main__':
    unittest2.main()