Python:除了OSError,e:

时间:2018-03-01 16:05:25

标签: python sst

我目前正在开发一个带有SST的网站 - Web测试框架(我是初学者)但是我遇到了python的问题

我使用了此链接:https://pypi.python.org/pypi/sst/0.2.2

我正在使用 - Python 3.6.4和SST - Web测试框架 - 最新版本:0.2.4

我的代码是:

from sst.actions import *
go_to('http://www.google.com/')

错误是:

C:\Python\scrapy-master\Projects>python proxyhar.py
Traceback (most recent call last):
File "proxyhar.py", line 1, in <module>
from sst.actions import *
File "C:\Python\lib\site-packages\sst\actions.py", line 274, in <module>
except OSError, e:
              ^
SyntaxError: invalid syntax

任何人都建议我如何解决此问题。

谢谢

1 个答案:

答案 0 :(得分:1)

Python 3改变了这个表达式的编写方式。 From the documentation,现在是except OSError as e

请注意,在Python 2中,both comma and as were permitted