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.7968459 9_template_filename = "/Users/classic/dev/mako/test/templates/modtest.html" 10_template_uri = "/modtest.html" 11_template_cache = cache.Cache(__name__, _modified_time) 12_source_encoding = None 13_exports = [] 14 15 16def render_body(context, **pageargs): 17 context.caller_stack._push_frame() 18 try: 19 __M_locals = __M_dict_builtin(pageargs=pageargs) 20 __M_writer = context.writer() 21 # SOURCE LINE 1 22 __M_writer("this is a test") 23 return "" 24 finally: 25 context.caller_stack._pop_frame() 26