This file is indexed.

/usr/lib/python2.7/dist-packages/relatorio/__init__.py is in python-relatorio 0.6.4-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
"""
relatorio
=========

A templating library which provides a way to easily output all kind of
different files (odt, ods, png, svg, ...). Adding support for more filetype is
easy: you just have to create a plugin for this.

relatorio also provides a report repository allowing you to link python objects
and report together, find reports by mimetypes/name/python objects.
"""
from .reporting import MIMETemplateLoader, ReportRepository, Report
from . import templates

__version__ = '0.6.4'
__all__ = ['MIMETemplateLoader', 'ReportRepository', 'Report', 'templates']