This file is indexed.

/usr/lib/python2.7/dist-packages/pyqtgraph/graphicsItems/__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
### just import everything from sub-modules

#import os

#d = os.path.split(__file__)[0]
#files = []
#for f in os.listdir(d):
    #if os.path.isdir(os.path.join(d, f)):
        #files.append(f)
    #elif f[-3:] == '.py' and f != '__init__.py':
        #files.append(f[:-3])
    
#for modName in files:
    #mod = __import__(modName, globals(), locals(), fromlist=['*'])
    #if hasattr(mod, '__all__'):
        #names = mod.__all__
    #else:
        #names = [n for n in dir(mod) if n[0] != '_']
    #for k in names:
        ##print modName, k
        #globals()[k] = getattr(mod, k)