This file is indexed.

/usr/bin/py2dsc-deb is in python-stdeb 0.8.5-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
13
14
15
16
17
#!/usr/bin/python
USAGE = """\
usage: py2dsc-deb [options] distfile
   or: py2dsc-deb --help

where distfile is a .zip or .tar.gz file built with the sdist command
of distutils.
"""

import stdeb.cli_runner
import sys

def main():
    sys.exit(stdeb.cli_runner.runit(cmd='bdist_deb',usage=USAGE))

if __name__=='__main__':
    main()