This file is indexed.

/usr/lib/python2.7/dist-packages/pymc/tests/test_cov.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
14
15
16
17
18
from numpy.testing import *
from pymc.gp import *
from pymc.gp.cov_funs import matern
from numpy import *
from copy import copy
from .test_mean import x, y

C = Covariance(eval_fun = matern.euclidean, diff_degree = 1.4, amp = .4, scale = 1.)
D = copy(C)

class test_cov(TestCase):
    def test(self):

        assert(C(x).shape == x.shape)
        assert(C(x,x).shape == (len(x), len(x)))

        assert(D(y).shape == (y.shape[0],))
        assert(D(y,y).shape == (y.shape[0], y.shape[0]))