This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/__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
36
37
38
39
40
41
42
43
44
45
46
47
"""Main module for DOLFIN"""

# Special module to handle import issues
import dolfin.importhandler

# Import UFL form language
from ufl import *

# Add log level present in C++ DOLFIN but not ufl.log
PROGRESS = 16

# Remove some unnecessary imports from UFL
del set_handler, set_level

# Import names from the compiled cpp modules
import cpp
from dolfin.cpp import *
from dolfin.cpp import __version__, __swigversion__

# Reset dl open flags
import sys
sys.setdlopenflags(dolfin.importhandler.stored_dlopen_flags)
del sys

# Repair namespace
from ufl import FiniteElement

# Import UFL color printing
from ufl.log import info_red, info_green, info_blue

# List of supported elements from FFC
try:
    from ffc import supported_elements, supported_elements_for_plotting
except:
    supported_elements = []
    supported_elements_for_plotting = []

# Imports from pure Python modules
from dolfin.functions import *
from dolfin.common import *
from dolfin.compilemodules import *
from dolfin.fem import *
from dolfin.mesh import *
from dolfin.multistage import *

# Handling of deprecated interfaces
from deprecation import *