在我的测试服务器上使用时Python请求库出现语法错误
我在我的一个项目中使用 Python 请求库。在我的本地系统上一切正常,我有 Python 2.6 和 Django 1.2.3。
我为我的测试服务器创建了相同的环境(Python 2.6 和 Django 1.2.3 并使用 WSGI 3.2)。现在我遇到一些奇怪的语法错误。例如:
line 266
result.append((k.encode('utf-8') if isinstance(k, unicode) else k,
^
SyntaxError: invalid syntax*
这是另一个:
from .config import settings
^
SyntaxError: invalid syntax*
我猜这是因为 wsgi 但不确定。有人可以帮我解决这个问题吗?
谢谢
I'm using Python Request Library in one of my projects. Everything works fine on my local system where I have Python 2.6 and Django 1.2.3.
I have created the same environment for my Test server(Python 2.6 and Django 1.2.3 and is using WSGI 3.2). Now I get some weird syntax errors. For example:
line 266
result.append((k.encode('utf-8') if isinstance(k, unicode) else k,
^
SyntaxError: invalid syntax*
Here's another:
from .config import settings
^
SyntaxError: invalid syntax*
I'm guessing it's something because of wsgi but not sure exactly. Can someone please help me to solve this issue.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个错误意味着您实际上没有使用 Python 2.6。您的环境中可能还安装了 Python 2.4,它用于执行您的代码。
This errors mean that actually you are not using Python 2.6. Probably Python 2.4 is also installed on you environment and it is used to execute your code.
我猜测您的网络服务器(例如 apache)正在使用旧版本的 python,而不是您设置的 python 2.6 环境。
I'm guessing your webserver (such as apache) is using an older version of python, rather than the python 2.6 environment you setup.