This file is indexed.

/usr/lib/python2.7/dist-packages/brial/context.py is in python-brial 1.2.0-2.

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
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
if __name__ == '__main__':
    from sys import path as search_path
    from os import path as file_path
    search_path.append(file_path.join(file_path.dirname(__file__), '..'))


def _exists():
    """PolyBoRi convention: checking optional components for prerequisites here

    >>> _exists()
    True
    """
    from distutils.sysconfig import get_python_version
    return float(get_python_version()) > 2.4

from .PyPolyBoRi import Ring, VariableFactory, MonomialFactory
from .PyPolyBoRi import PolynomialFactory, SetFactory
from .PyPolyBoRi import Variable, Monomial, Polynomial, BooleSet
import polybori


class FactoryContext(object):
    """Temporarily exchange the constructor of a given type with a compatible
    callable object. It is useful together with the with statement.

    Example:
    >>> r = Ring(1000)
    >>> from brial import Variable
    >>> def var(idx): return Variable(idx, r)
    >>> with FactoryContext(Variable, var):
    ...     print Variable(17)
    x(17)
    >>> try:
    ...     print Variable(17)
    ... except:
    ...     print "caught expected exception"
    caught expected exception
    """

    def __init__(self, original, factory):
        self.original = original
        self.factory = factory

    def __enter__(self):
        self.fallback = self.original.__init__

        def func(orig, *args):
            try:
                self.fallback(orig, self.factory(*args))
            except:
                self.fallback(orig, *args)

        self.original.__init__ = func
        return self

    def __exit__(self, type, value, traceback):
        self.original.__init__ = self.fallback
        return False


class RingContext(object):
    """Temporarily fix the ring for constructors of some ring-dependent types
    like Variable and Monomial to a given ring. It is useful together with
    the with statement.

    Example:
    >>> r = Ring(1000)
    >>> from brial import Variable
    >>> print Variable(17, r)
    x(17)
    >>> with RingContext(r):
    ...     print Variable(17), Monomial(), Polynomial(0), BooleSet()
    x(17) 1 0 {}
    >>> try:
    ...     print Variable(17)
    ... except:
    ...     print "caught expected exception"
    caught expected exception
    """

    def __init__(self, ring):
        self.contexts = (FactoryContext(Variable, VariableFactory(ring)),
                         FactoryContext(Monomial, MonomialFactory(ring)),
                         FactoryContext(Polynomial, PolynomialFactory(ring)),
                         FactoryContext(BooleSet, SetFactory(ring)))

    def __enter__(self):
        for elt in self.contexts:
            elt.__enter__()
        return self

    def __exit__(self, type, value, traceback):
        result = False
        for elt in reversed(self.contexts):
            result = result or elt.__exit__(type, value, traceback)
        return result


if __name__ == '__main__':
    import doctest
    doctest.testmod()