This file is indexed.

/usr/lib/python3/dist-packages/humanize/__init__.py is in python3-humanize 0.5.1-2.

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
VERSION = (0,4)

from humanize.time import *
from humanize.number import *
from humanize.filesize import *
from humanize.i18n import activate, deactivate

__all__ = ['VERSION', 'naturalday', 'naturaltime', 'ordinal', 'intword',
    'naturaldelta', 'intcomma', 'apnumber', 'fractional', 'naturalsize',
    'activate', 'deactivate', 'naturaldate']