This file is indexed.

/usr/lib/python2.7/dist-packages/zope/i18n/tests/configure.txt 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
12
13
14
15
16
17
18
Package configuration
=====================

The ``zope.i18n`` package provides a ZCML file that configures a utility and
some security:

  >>> from zope.configuration.xmlconfig import XMLConfig
  >>> import zope.i18n

  >>> XMLConfig('configure.zcml', zope.i18n.locales)()

  >>> len(list(zope.component.getGlobalSiteManager().registeredUtilities()))
  13

  >>> XMLConfig('configure.zcml', zope.i18n)()

  >>> len(list(zope.component.getGlobalSiteManager().registeredUtilities()))
  15