This file is indexed.

/usr/bin/pydoctor is in python-pydoctor 0.5+bzr616-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#! /usr/bin/python
import os
import sys

d = os.path.dirname(os.path.dirname(__file__))

if os.path.isdir(os.path.join(d, 'pydoctor')):
   sys.path.insert(0, d)

from pydoctor.driver import main

sys.exit(main(sys.argv[1:]))