This file is indexed.

/usr/lib/python2.7/dist-packages/pyqtgraph/opengl/__init__.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
from .GLViewWidget import GLViewWidget

## dynamic imports cause too many problems.
#from .. import importAll
#importAll('items', globals(), locals())

from .items.GLGridItem import * 
from .items.GLBarGraphItem import * 
from .items.GLScatterPlotItem import *                                                                                                                      
from .items.GLMeshItem import *                                                                                                                             
from .items.GLLinePlotItem import *                                                                                                                         
from .items.GLAxisItem import *                                                                                                                             
from .items.GLImageItem import *                                                                                                                            
from .items.GLSurfacePlotItem import *                                                                                                                      
from .items.GLBoxItem import *                                                                                                                              
from .items.GLVolumeItem import *                                                                                                                           

from .MeshData import MeshData
## for backward compatibility:
#MeshData.MeshData = MeshData  ## breaks autodoc.

from . import shaders