This file is indexed.

/usr/lib/python3/dist-packages/macholib/macho_find.py is in python3-macholib 1.9-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
18
19
20
21
#!/usr/bin/env python
from __future__ import print_function
from macholib._cmdline import main as _main


def print_file(fp, path):
    print(path, file=fp)


def main():
    print(
        "WARNING: 'macho_find' is deprecated, "
        "use 'python -mmacholib dump' instead")
    _main(print_file)


if __name__ == '__main__':
    try:
        main()
    except KeyboardInterrupt:
        pass