This file is indexed.

/usr/lib/python3/dist-packages/rpy2/interactive/tests/__init__.py is in python3-rpy2 2.8.5-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
import unittest
from os.path import dirname

def main():
    tr = unittest.TextTestRunner(verbosity = 2)
    suite = unittest.defaultTestLoader.discover(dirname(__file__),
                                                pattern='test*')
    tr.run(suite)

if __name__ == '__main__':
    main()