1from mako import cache
2from mako import runtime
3
4UNDEFINED = runtime.UNDEFINED
5__M_dict_builtin = dict
6__M_locals_builtin = locals
7_magic_number = 5
8_modified_time = 1267565427.799504
9_template_filename = (
10    "/Users/classic/dev/mako/test/templates/subdir/modtest.html"
11)
12_template_uri = "/subdir/modtest.html"
13_template_cache = cache.Cache(__name__, _modified_time)
14_source_encoding = None
15_exports = []
16
17
18def render_body(context, **pageargs):
19    context.caller_stack._push_frame()
20    try:
21        __M_locals = __M_dict_builtin(pageargs=pageargs)
22        __M_writer = context.writer()
23        # SOURCE LINE 1
24        __M_writer("this is a test")
25        return ""
26    finally:
27        context.caller_stack._pop_frame()
28