This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/fem/__init__.py is in python-dolfin 1.3.0+dfsg-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
"""The function module of dolfin"""
from dolfin.fem import form
from dolfin.fem import assembling
from dolfin.fem import variationalproblem
from dolfin.fem import norms
from dolfin.fem import projection
from dolfin.fem import interpolation
from dolfin.fem import bcs
from dolfin.fem import formmanipulations

from form import *
from assembling import *
from solving import *
from adaptivesolving import *
from variationalproblem import *
from interpolation import *
from norms import *
from projection import *
from bcs import *
from formmanipulations import *

# NOTE: The automatic documentation system in DOLFIN requires to _not_ define
# NOTE: classes or functions within this file. Use separate modules for that
# NOTE: purpose.

__all__ = form.__all__ + \
          assembling.__all__ + \
          solving.__all__ + \
          adaptivesolving.__all__ + \
          variationalproblem.__all__ + \
          norms.__all__ + \
          projection.__all__ + \
          interpolation.__all__ + \
          bcs.__all__ + \
          formmanipulations.__all__