This file is indexed.

/usr/share/boost-build/src/tools/types/__init__.py is in libboost1.58-tools-dev 1.58.0+dfsg-5ubuntu3.

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
__all__ = [
    'asm',
    'cpp',
    'exe',
    'html',
    'lib',
    'obj',
    'preprocessed',
    'rsp',
]

def register_all ():
    for i in __all__:
        m = __import__ (__name__ + '.' + i)
        reg = i + '.register ()'
        #exec (reg)

# TODO: (PF) I thought these would be imported automatically. Anyone knows why they aren't?
register_all ()