This file is indexed.

/usr/lib/python2.7/dist-packages/photutils/geometry/tests/test_circular_overlap_grid.py is in python-photutils 0.2.1-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
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from __future__ import division

import itertools
from numpy.testing import assert_allclose
from astropy.tests.helper import pytest
from .. import circular_overlap_grid

grid_sizes = [50, 500, 1000]
circ_sizes = [0.2, 0.4, 0.8]
use_exact = [0, 1]
subsamples = [1, 5, 10]

arg_list = ['grid_size', 'circ_size', 'use_exact', 'subsample']

@pytest.mark.parametrize(('grid_size', 'circ_size', 'use_exact', 'subsample'),
                         list(itertools.product(grid_sizes, circ_sizes, use_exact, subsamples)))
def test_circular_overlap_grid(grid_size, circ_size, use_exact, subsample):
    """
    Test normalization of the overlap grid to make sure that a fully enclosed pixel has a value of 1.0.
    """
    g = circular_overlap_grid(-1.0, 1.0, -1.0, 1.0, grid_size, grid_size, circ_size, use_exact, subsample)
    assert_allclose(g.max(), 1.0)