This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/multistage/__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
"""The multistage module of dolfin"""
from dolfin.multistage import multistagescheme
from dolfin.multistage import multistagesolvers

from multistagescheme import *
from multistagesolvers 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__ = multistagescheme.__all__ + multistagesolvers.__all__