This file is indexed.

/usr/lib/python2.7/dist-packages/csb/test/app.py is in python-csb 1.2.2+dfsg-2ubuntu1.

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
"""
CSB Test Runner app. Run with -h to see the app's documentation.
"""

from csb.test import Console

main = Console

if __name__ == '__main__':
    
    main('csb.test.cases.*')