This file is indexed.

/usr/lib/python2.7/doc/perl/distutils.perl is in python-old-doctools 2.5.5-2.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
# LaTeX2HTML support for distutils.sty.

package main;

sub do_cmd_command {
    return use_wrappers(@_[0], '<code class="du-command">', '</code>');
}

sub do_cmd_option {
    return use_wrappers(@_[0], '<span class="du-option">', '</span>');
}

sub do_cmd_filevar {
    return use_wrappers(@_[0], '<span class="du-filevar">', '</span>');
}

sub do_cmd_XXX {
    return use_wrappers(@_[0], '<b class="du-xxx">', '</b>');
}

1;  # Bad Perl.