This file is indexed.

/usr/lib/python3/dist-packages/pweave/config.py is in python3-pweave 0.25-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
22
23
24
25
26
27
28
29
30
31
32
33
# Moved globals from Pweb, check to see after move each for invalid references!


rcParams = {"figdir": "figures",
            "usematplotlib": True,
            "storeresults": False,
            "cachedir": 'cache',
            "shell_path": "python",
            "chunk": {"defaultoptions": {
                "echo": True,
                "results": 'verbatim',
                "fig": True,
                "include": True,
                "evaluate": True,
                "caption": False,
                "term": False,
                "name": None,
                "wrap": True,
                "f_pos": "htpb",
                "f_size": (8, 6),
                "f_env": None,
                "f_spines": True,
                "complete": True,
                "engine": "python",
                "option_string": "",
            }
            }
}


class PwebProcessorGlobals(object):
    """A class to hold the globals used in processors"""
    globals = {}