在我的测试服务器上使用时Python请求库出现语法错误

发布于 2024-12-10 03:13:18 字数 490 浏览 0 评论 0原文

我在我的一个项目中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忘东忘西忘不掉你 2024-12-17 03:13:18

这个错误意味着您实际上没有使用 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.

浅浅淡淡 2024-12-17 03:13:18

我猜测您的网络服务器(例如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文