在OpenShift的书中使用Python 3.3

前端之家收集整理的这篇文章主要介绍了在OpenShift的书中使用Python 3.3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

OpenShift最近出版了一本书“OpenShift入门”.对于刚开始的人来说,这是一个很好的指南.

在第3章中,他们展示了如何修改模板应用程序以使用Python 2.7和Flask.我们的要求是Python 3.3.

在第19页,对wsgi.py的修改之一是:execfile(virtualenv,dict(file = virtualenv)). execfile在3.x中被废除了. StackOverflow中有关于如何翻译的例子,但我不清楚如何将这些应用于这种情况.

有没有人对此问题有任何见解?

最佳答案
this question所示,您可以更换线路

execfile(virtualenv,dict(__file__=virtualenv))

通过

exec(compile(open(virtualenv,'rb').read(),virtualenv,'exec'),dict(__file__=virtualenv))

在我看来,最好将其分解为几个更简单的部分.我们也应该使用上下文处理程序来处理文件::

with open(virtualenv,'rb') as exec_file:
    file_contents = exec_file.read()
compiled_code = compile(file_contents,'exec')
exec_namespace = dict(__file__=virtualenv)
exec(compiled_code,exec_namespace)

以这种方式打破它也将使调试更容易(实际上:可能).我没有测试过这个,但它应该可行.

原文链接:https://www.f2er.com/python/439772.html

猜你在找的Python相关文章