This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/020-on-error.pt.py is in python-chameleon 2.16-4.

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
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# -*- coding: utf-8 -*-
pass
from chameleon.utils import Placeholder as _Placeholder
import sys as _sys
pass
_static_37141392 = {}
_static_37138960 = {}
_static_36743056 = {}
_marker_default = _Placeholder()
import re
import functools
_marker = object()
g_re_amp = re.compile('&(?!([A-Za-z]+|#[0-9]+);)')
g_re_needs_escape = re.compile('[&<>\\"\\\']').search
re_whitespace = functools.partial(re.compile('\\s+').sub, ' ')

def render(stream, econtext, rcontext):
    append = stream.append
    getitem = econtext.__getitem__
    get = econtext.get
    _i18n_domain = None
    re_amp = g_re_amp
    re_needs_escape = g_re_needs_escape
    decode = getitem('decode')
    convert = getitem('convert')
    translate = getitem('translate')
    _backup_attrs_40147424 = get('attrs', _marker)

    # <Static value=<_ast.Dict object at 0x230a790> name=None at 230a490> -> _value
    _value = _static_36743056
    econtext['attrs'] = _value

    # <html ... (1:0)
    # --------------------------------------------------------
    append(u'<html>')
    _content_139955154988272 = u'\n  '
    if (_content_139955154988272 is not None):
        append(_content_139955154988272)
    __fallback_34354496 = len(stream)
    try:
        _backup_attrs_40147568 = get('attrs', _marker)

        # <Static value=<_ast.Dict object at 0x236b210> name=None at 236b490> -> _value
        _value = _static_37138960
        econtext['attrs'] = _value

        # <body ... (2:2)
        # --------------------------------------------------------
        append(u'<body>')
        _content_139955154988272 = u'\n    '
        if (_content_139955154988272 is not None):
            append(_content_139955154988272)
        _backup_attrs_40167832 = get('attrs', _marker)

        # <Static value=<_ast.Dict object at 0x236bb90> name=None at 236b3d0> -> _value
        _value = _static_37141392
        econtext['attrs'] = _value

        # <div ... (3:4)
        # --------------------------------------------------------
        append(u'<div>')
        _backup_default_40145120 = get('default', _marker)

        # <Marker name='default' at 236b690> -> _value
        _value = _marker_default
        econtext['default'] = _value

        # <Expression u'undefined' (3:22)> -> _cache_37138512
        try:
            _cache_37138512 = getitem('undefined')
        except:
            rcontext.setdefault('__error__', []).append((u'undefined', 3, 22, '<string>', _sys.exc_info()[1], ))
            raise


        # <Identity expression=<Expression u'undefined' (3:22)> value=<Marker name='default' at 236b7d0> at 236bfd0> -> _condition
        _expression = _cache_37138512

        # <Marker name='default' at 236b7d0> -> _value
        _value = _marker_default
        _condition = (_expression is _value)
        if _condition:
            pass
        else:
            _content = _cache_37138512
            if (_content is None):
                pass
            else:
                if (_content is False):
                    _content = None
                else:
                    _tt = type(_content)
                    if ((_tt is int) or (_tt is float) or (_tt is long)):
                        _content = unicode(_content)
                    else:
                        try:
                            if (_tt is str):
                                _content = decode(_content)
                            else:
                                if (_tt is not unicode):
                                    try:
                                        _content = _content.__html__
                                    except:
                                        _content = convert(_content)
                                    else:
                                        raise RuntimeError
                        except RuntimeError:
                            _content = _content()
                        else:
                            if ((_content is not None) and (re_needs_escape(_content) is not None)):
                                if ('&' in _content):
                                    if (';' in _content):
                                        _content = re_amp.sub('&amp;', _content)
                                    else:
                                        _content = _content.replace('&', '&amp;')
                                if ('<' in _content):
                                    _content = _content.replace('<', '&lt;')
                                if ('>' in _content):
                                    _content = _content.replace('>', '&gt;')
                                if ('\x00' in _content):
                                    _content = _content.replace('\x00', '&#34;')
            if (_content is not None):
                append(_content)
        if (_backup_default_40145120 is _marker):
            del econtext['default']
        else:
            econtext['default'] = _backup_default_40145120
        append(u'</div>')
        if (_backup_attrs_40167832 is _marker):
            del econtext['attrs']
        else:
            econtext['attrs'] = _backup_attrs_40167832
        _content_139955154988272 = u'\n  '
        if (_content_139955154988272 is not None):
            append(_content_139955154988272)
        append(u'</body>')
        if (_backup_attrs_40147568 is _marker):
            del econtext['attrs']
        else:
            econtext['attrs'] = _backup_attrs_40147568
    except (NameError, ValueError, AttributeError, LookupError, TypeError, ):
        del stream[__fallback_34354496:]

        # <Expression u'string:error' (2:22)> -> _content
        try:
            _content = u'error'
        except:
            rcontext.setdefault('__error__', []).append((u'string:error', 2, 22, '<string>', _sys.exc_info()[1], ))
            raise

        if (_content is not None):
            _tt = type(_content)
            if ((_tt is int) or (_tt is float) or (_tt is long)):
                _content = str(_content)
            else:
                if (_tt is str):
                    _content = decode(_content)
                else:
                    if (_tt is not unicode):
                        try:
                            _content = _content.__html__
                        except AttributeError:
                            _content = convert(_content)
                        else:
                            _content = _content()
        if (_content is not None):
            append(_content)

    _content_139955154988272 = u'\n'
    if (_content_139955154988272 is not None):
        append(_content_139955154988272)
    append(u'</html>')
    if (_backup_attrs_40147424 is _marker):
        del econtext['attrs']
    else:
        econtext['attrs'] = _backup_attrs_40147424
    _content_139955154988272 = u'\n'
    if (_content_139955154988272 is not None):
        append(_content_139955154988272)
pass