This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/mesh/__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
"""The mesh module of dolfin"""
import meshes
import ale
import refinement

from meshes import *
from ale import *
from refinement import *

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

__all__ = meshes.__all__ + ale.__all__ + refinement.__all__