本文整理汇总了Python中types.ModuleType.render方法的典型用法代码示例。如果您正苦于以下问题:Python ModuleType.render方法的具体用法?Python ModuleType.render怎么用?Python ModuleType.render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类types.ModuleType
的用法示例。
在下文中一共展示了ModuleType.render方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _swap_settings
# 需要导入模块: from types import ModuleType [as 别名]
# 或者: from types.ModuleType import render [as 别名]
'DEBUG': debug,
}
old_settings = _swap_settings(new_settings)
try:
template = django.template.loader.get_template(file_name)
return template.render(Context(template_dict))
finally:
_swap_settings(old_settings)
if not debug:
template_cache[abspath] = template
template_module_name = 'google.appengine.ext.webapp.template'
template = ModuleType(name=template_module_name)
template.render = render
template.template_cache = template_cache
# 2.7 has webapp point to webapp2, which has not template module.
# So adding one shouldn't cause problems for other apps, developed for
# webapp2.
from google.appengine.ext import webapp
sys.modules[template.__name__] = template
webapp.template = template
# Add this module to sys.modules as the dirname, so that it doesn't
# imported twice via a different module name.
console_module_name = os.path.basename(BASEDIR)
this_module = get_this_module()
sys.modules[console_module_name] = this_module
sys.modules['console'] = this_module