aboutsummaryrefslogtreecommitdiffstats
path: root/test/templates/foo/modtest.html.py
blob: e6fc8d89eed61fd4584f8dbbd381c5569f0811a9 (plain)
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
from mako import runtime, filters, cache
UNDEFINED = runtime.UNDEFINED
__M_dict_builtin = dict
__M_locals_builtin = locals
_magic_number = 5
_modified_time = 1267565427.7968459
_template_filename='/Users/classic/dev/mako/test/templates/modtest.html'
_template_uri='/modtest.html'
_template_cache=cache.Cache(__name__, _modified_time)
_source_encoding=None
_exports = []


def render_body(context,**pageargs):
    context.caller_stack._push_frame()
    try:
        __M_locals = __M_dict_builtin(pageargs=pageargs)
        __M_writer = context.writer()
        # SOURCE LINE 1
        __M_writer('this is a test')
        return ''
    finally:
        context.caller_stack._pop_frame()