This file is indexed.

/usr/lib/python2.7/dist-packages/flask_autoindex/run.py is in python-flask-autoindex 0.6+0git20160725-02b454-3.

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
import os.path
from flask import Flask
from flask_autoindex import AutoIndex


app = Flask(__name__)
AutoIndex(app)

if __name__ == '__main__':
    app.run()