This file is indexed.

/usr/share/doc/python-doit-doc/examples/tutorial/task_reusable.py is in python-doit-doc 0.28.0-1+deb9u1.

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
def gen_many_tasks():
    yield {'basename': 't1',
           'actions': ['echo t1']}
    yield {'basename': 't2',
           'actions': ['echo t2']}

def task_all():
    yield gen_many_tasks()