This file is indexed.

/usr/lib/python3/dist-packages/slepc4py/SLEPc.py is in python3-slepc4py 3.7.0-3build1.

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
ARCH = None
from slepc4py.lib import ImportSLEPc
from slepc4py.lib import ImportPETSc
SLEPc = ImportSLEPc(ARCH)
PETSc = ImportPETSc(ARCH)
PETSc._initialize()
SLEPc._initialize()
del SLEPc, PETSc
del ImportSLEPc, ImportPETSc
del ARCH