This file is indexed.

/usr/share/pyshared/sympy/polys/polycontext.py is in python-sympy 0.7.1.rc1-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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""Tools for managing evaluation contexts. """

from sympy.utilities.iterables import dict_merge

__known_options__ = set(['frac', 'gens', 'wrt', 'sort', 'order', 'domain',
    'modulus', 'gaussian', 'extension', 'field', 'greedy', 'symmetric'])

__global_options__ = []

__template__ = """\
def %(option)s(_%(option)s):
    return Context(%(option)s=_%(option)s)
"""

for option in __known_options__:
    exec __template__ % { 'option': option }

class Context(object):

    __slots__ = ['__options__']

    def __init__(self, dict=None, **options):
        if dict is not None:
            self.__options__ = dict_merget(dict, options)
        else:
            self.__options__ = options

    def __getattribute__(self, name):
        if name in __known_options__:
            try:
                return object.__getattribute__(self, '__options__')[name]
            except KeyError:
                return None
        else:
            return object.__getattribute__(self, name)

    def __str__(self):
        return 'Context(%s)' % ', '.join(
            [ '%s=%r' % (key, value) for key, value in self.__options__.iteritems() ])

    def __and__(self, other):
        if isinstance(other, Context):
            return Context(**dict_merge(self.__options__, other.__options__))
        else:
            raise TypeError("a context manager expected, got %s" % other)

    def __enter__(self):
        raise NotImplementedError('global context')

    def __exit__(self, exc_type, exc_val, exc_tb):
        raise NotImplementedError('global context')

def register_context(func):
    def wrapper(self, *args, **kwargs):
        return func(*args, **dict_merge(self.__options__, kwargs))

    wrapper.__doc__ = func.__doc__
    wrapper.__name__ = func.__name__

    setattr(Context, func.__name__, wrapper)

    return func