This file is indexed.

/usr/lib/python2.7/dist-packages/pymc/tests/test_realization.py is in python-pymc 2.2+ds-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
from numpy.testing import *
from pymc.gp import *
from .test_mean import M, x
from .test_cov import C
from numpy import *
from copy import copy

# Impose observations on the GP
class test_realization(TestCase):
    def test(self):
        for i in range(3):
            f = Realization(M, C)
            f(x)