This file is indexed.

/usr/lib/python2.7/dist-packages/pyqtgraph/examples/ScatterPlotWidget.py is in python-pyqtgraph 0.9.10-5.

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
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
import initExample ## Add path to library (just for examples; you do not need this)

import pyqtgraph as pg
from pyqtgraph.Qt import QtCore, QtGui
import numpy as np

pg.mkQApp()

spw = pg.ScatterPlotWidget()
spw.show()

data = np.array([
    (1, 1, 3, 4, 'x'),
    (2, 3, 3, 7, 'y'),
    (3, 2, 5, 2, 'z'),
    (4, 4, 6, 9, 'z'),
    (5, 3, 6, 7, 'x'),
    (6, 5, 4, 6, 'x'),
    (7, 5, 8, 2, 'z'),
    (8, 1, 2, 4, 'x'),
    (9, 2, 3, 7, 'z'),
    (0, 6, 0, 2, 'z'),
    (1, 3, 1, 2, 'z'),
    (2, 5, 4, 6, 'y'),
    (3, 4, 8, 1, 'y'),
    (4, 7, 6, 8, 'z'),
    (5, 8, 7, 4, 'y'),
    (6, 1, 2, 3, 'y'),
    (7, 5, 3, 9, 'z'),
    (8, 9, 3, 1, 'x'),
    (9, 2, 6, 2, 'z'),
    (0, 3, 4, 6, 'x'),
    (1, 5, 9, 3, 'y'),
    ], dtype=[('col1', float), ('col2', float), ('col3', int), ('col4', int), ('col5', 'S10')])

spw.setFields([
    ('col1', {'units': 'm'}),
    ('col2', {'units': 'm'}),
    ('col3', {}),
    ('col4', {}),
    ('col5', {'mode': 'enum', 'values': ['x', 'y', 'z']}),
    ])
    
spw.setData(data)


## Start Qt event loop unless running in interactive mode or using pyside.
if __name__ == '__main__':
    import sys
    if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
        QtGui.QApplication.instance().exec_()