/usr/bin/pydoctor is in python-pydoctor 16.3.0-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:]))
|