This file is indexed.

/usr/lib/python2.7/dist-packages/chemfp/decoders.py is in python-chemfp 1.1p1-2.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
import warnings

warnings.warn("The decoders are now located in the chemfp.encoders module.", DeprecationWarning)

from .encodings import (from_base64, from_binary_lsb, from_binary_msb, from_cactvs, from_daylight,
                        from_hex, from_hex_lsb, from_hex_msb, from_on_bit_positions)
1/0