This file is indexed.

/usr/share/pyshared/Scientific/LA.py is in python-scientific 2.8-4.

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
import Scientific_numerics_package_id
package = Scientific_numerics_package_id.getNumericsPackageName()
del Scientific_numerics_package_id

if package == "Numeric":

    from LinearAlgebra import *

elif package == "NumPy":

    from numpy.oldnumeric.linear_algebra import *

elif package == "Numarray":

    from numarray.linear_algebra import *

else:

    raise ImportError("Unknown numerics package " + package)