This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/functions/__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
"""The function module of dolfin"""

from dolfin.functions import functionspace
from dolfin.functions import function
from dolfin.functions import constant
from dolfin.functions import expression
from dolfin.functions import specialfunctions

from functionspace import *
from function import *
from constant import *
from expression import *
from specialfunctions  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__ = functionspace.__all__ + function.__all__ + constant.__all__ + \
          expression.__all__ + specialfunctions.__all__