This file is indexed.

/usr/lib/python2.7/dist-packages/kid/release.py is in python-kid 0.9.6-3.

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
19
20
21
22
# -*- coding: utf-8 -*-

"""Pythonic, XML Templating

Kid is a simple, Python-based template language for generating and
transforming XML vocabularies. Kid was spawned as a result of a kinky love
triangle between XSLT, TAL, and PHP. We believe many of the best features
of these languages live on in Kid with much of the limitations and
complexity stamped out (well, eventually :).

"""

__revision__ = "$Rev: 497 $"
__date__ = "$Date: 2007-07-16 14:48:50 -0400 (Mon, 16 Jul 2007) $"

version = "0.9.6"
author = "Ryan Tomayko"
email = "rtomayko@gmail.com"
copyright = "Copyright 2004-2006, Ryan Tomayko, " \
    "David Stanek, Christoph Zwerschke, Daniel Miller"
license = "MIT" # http://www.opensource.org/licenses/mit-license.php
long_description = '\n'.join(__doc__.splitlines()[1:]).strip()