This file is indexed.

/usr/share/pyshared/paste/script/default_sysconfig.py is in python-pastescript 1.7.5-3.

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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
"""
This module contains default sysconfig settings.

The command object is inserted into this module as a global variable
``paste_command``, and can be used inside functions.
"""

def add_custom_options(parser):
    """
    This method can modify the ``parser`` object (which is an
    ``optparse.OptionParser`` instance).  This can be used to add new
    options to the command.
    """
    pass

def default_config_filename(installer):
    """
    This function can return a default filename or directory for the
    configuration file, if none was explicitly given.

    Return None to mean no preference.  The first non-None returning
    value will be used.

    Pay attention to ``installer.expect_config_directory`` here,
    and to ``installer.default_config_filename``.  
    """
    return installer.default_config_filename

def install_variables(installer):
    """
    Returns a dictionary of variables for use later in the process
    (e.g., filling a configuration file).  These are combined from all
    sysconfig files.
    """
    return {}

def post_setup_hook(installer, config_file):
    """
    This is called at the very end of ``paster setup-app``.  You
    might use it to register an application globally.
    """
    pass