This file is indexed.

/usr/lib/python3/dist-packages/photutils/isophote/tests/test_angles.py is in python3-photutils 0.4-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
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
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from __future__ import (absolute_import, division, print_function,
                        unicode_literals)

import math
import numpy as np


def sector_area(a, eps, phi, r):
    aux = r * np.cos(phi) / a
    saux = aux / abs(aux)
    if abs(aux) >= 1.:
        aux = saux
    return (abs(a ** 2 * (1. - eps) / 2. * math.acos(aux)))


def test_angles(phi_min=0.05, phi_max=0.2):
    a = 40.
    astep = 1.1
    eps = 0.1

    # r = a
    a1 = a * (1. - ((1. - 1. / astep) / 2.))
    a2 = a * (1. + (astep - 1.) / 2.)
    r3 = a2
    r4 = a1
    aux = min((a2 - a1), 3.)
    sarea = (a2 - a1) * aux
    dphi = max(min((aux / a), phi_max), phi_min)
    phi = dphi / 2.
    phi2 = phi - dphi / 2.
    aux = 1. - eps
    r3 = a2 * aux / np.sqrt((aux * np.cos(phi2))**2 + (np.sin(phi2))**2)
    r4 = a1 * aux / np.sqrt((aux * np.cos(phi2))**2 + (np.sin(phi2))**2)

    ncount = 0
    while phi < np.pi*2:
        phi1 = phi2
        r1 = r4
        r2 = r3
        phi2 = phi + dphi / 2.
        aux = 1. - eps
        r3 = a2 * aux / np.sqrt((aux * np.cos(phi2))**2 + (np.sin(phi2))**2)
        r4 = a1 * aux / np.sqrt((aux * np.cos(phi2))**2 + (np.sin(phi2))**2)

        sa1 = sector_area(a1, eps, phi1, r1)
        sa2 = sector_area(a2, eps, phi1, r2)
        sa3 = sector_area(a2, eps, phi2, r3)
        sa4 = sector_area(a1, eps, phi2, r4)
        area = abs((sa3 - sa2) - (sa4 - sa1))

        # Compute step to next sector and its angular span
        dphi = max(min((sarea / (r3 - r4) / r4), phi_max), phi_min)
        phistep = dphi / 2. + phi2 - phi

        ncount += 1

        assert area > 11.0 and area < 12.4

        phi = phi + min(phistep, 0.5)
        # r = (a * (1. - eps) / np.sqrt(((1. - eps) * np.cos(phi))**2 +
        #                               (np.sin(phi))**2))

    assert ncount == 72