This file is indexed.

/usr/lib/python2.7/dist-packages/zope/i18n/config.py is in python-zope.i18n 4.1.0-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
 8
 9
10
11
import os

COMPILE_MO_FILES_KEY = 'zope_i18n_compile_mo_files'
COMPILE_MO_FILES = os.environ.get(COMPILE_MO_FILES_KEY, False)

ALLOWED_LANGUAGES_KEY = 'zope_i18n_allowed_languages'
ALLOWED_LANGUAGES = os.environ.get(ALLOWED_LANGUAGES_KEY, None)

if ALLOWED_LANGUAGES is not None:
    ALLOWED_LANGUAGES = ALLOWED_LANGUAGES.strip().replace(',', ' ')
    ALLOWED_LANGUAGES = frozenset(ALLOWED_LANGUAGES.split())