This file is indexed.

/usr/lib/python3/dist-packages/sqlalchemy_utils/types/scalar_coercible.py is in python3-sqlalchemy-utils 0.32.21-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
class ScalarCoercible(object):
    def _coerce(self, value):
        raise NotImplemented

    def coercion_listener(self, target, value, oldvalue, initiator):
        return self._coerce(value)