This file is indexed.

/usr/share/pyshared/scitools/std.py is in python-scitools 0.9.0-1.

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
"""
Quick import of easyviz and basic scitools modules.

This module just contains two import statements::

  from scitools.easyviz import *
  from scitools.basics  import *

The former imports plot, movie, legend, title, mesh, surf,
contour, quiver, and most other convienient functions from the
Easyviz plotting tool. The latter import statement performs::

  from numpy import *    
  from scitools.numpyutils import *  # some convenience functions
  from numpy.lib.scimath import *
  from scipy import *                # if scipy is installed
  import sys, operator, math
  from scitools.StringFunction import StringFunction
  from glob import glob
  
See also the documentation of scitools.easyviz and scitools.basics.
"""

# import easyviz first to make sure the scipy or numpy import
# in basics overwrites whatever easyviz imports of the same names:
from scitools.easyviz import *
from scitools.basics  import *