This file is indexed.

/usr/lib/python2.7/dist-packages/paver/defaults.py is in python-paver 1.2.1-1.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
"""The namespace for the pavement to run in, also imports default tasks."""

import warnings

warnings.warn("""paver.defaults is deprecated. Import from paver.easy instead.
Note that you will need to add additional declarations for exactly
equivalent behavior. Specifically:

from paver.easy import *
import paver.misctasks
from paver import setuputils

setuputils.install_distutils_tasks()
""", DeprecationWarning, 2)

from paver.easy import *
from paver.misctasks import *
from paver import setuputils

setuputils.install_distutils_tasks()