This file is indexed.

/usr/share/pyshared/Scientific/FFT.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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import Scientific_numerics_package_id
package = Scientific_numerics_package_id.getNumericsPackageName()
del Scientific_numerics_package_id

if package == "Numeric":

    import os
    import sys
    def pythonImport(name):
        current_path = os.path.dirname(os.path.abspath(__file__))
        base_name = os.path.basename(current_path).split('.')[0]
        sys.path[:] = [path for path in sys.path
                       if os.path.abspath(path) != os.path.abspath(current_path)]
        try:
            original_module = sys.modules[name]
            del sys.modules[name]
        except KeyError:
            original_module = None
        python_module = __import__(name)
        python_module_name = 'python_%s' % name
        sys.modules[python_module_name] = python_module
        sys.path.append(current_path)
        if original_module is None:
            sys.modules[name] = original_module
        return python_module_name, python_module
    pythonImport('FFT')
    del os
    del sys
    del pythonImport
    from python_FFT import *

elif package == "NumPy":

    from numpy.oldnumeric.fft import *

elif package == "Numarray":

    from numarray.fft import *

else:

    raise ImportError("Unknown numerics package " + package)