This file is indexed.

/usr/lib/python2.7/dist-packages/dolfin/common/__init__.py is in python-dolfin 2016.2.0-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
# -*- coding: utf-8 -*-
"""The common module of dolfin"""
from dolfin.common import globalparameters
from dolfin.common import constants
from dolfin.common import plotting
from dolfin.common import time             
from dolfin.common import memory
from dolfin.common import math

from .globalparameters import *
from .constants import *
from .plotting import *   
from .time import *   
from .memory import * 
from .math 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__ = globalparameters.__all__ + constants.__all__ + \
          time.__all__ + memory.__all__ + math.__all__ + plotting.__all__