This file is indexed.

/usr/share/perl5/Debian/Debhelper/Sequence/python_support.pm is in debhelper 9.20120909.

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
#!/usr/bin/perl
# debhelper sequence file for python-support

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

# Test if dh_pysupport is available before inserting it.
# (This would not be needed if this file was contained in the python-support
# package.)
if (-x "/usr/bin/dh_pysupport") {
	insert_before("dh_installinit", "dh_pysupport");
}

1