操作系统: CentOS 7.0 x64
解释器: Python 3.4.1 从源代码编译--enable-shared
示例命令:
$ python3.4 -c "import locust"
追溯:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/local/lib/python3.4/site-packages/locust/__init__.py", line 1, in <module>
from core import HttpLocust, Locust, TaskSet, task
File "/usr/local/lib/python3.4/site-packages/locust/core.py", line 106
raise LocustError, LocustError("A task inside a Locust class' main TaskSet
(`%s.task_set` of type `%s`) seems to have called interrupt() or raised
an InterruptTaskSet exception. The interrupt() function is used to hand over execution
to a parent TaskSet, and should never be called in the main TaskSet which a Locust
class' task_set attribute points to." % (type(self).__name__, self.task_set.__name__)), sys.exc_info()[2]
^
SyntaxError: invalid syntax
我很困惑......为什么它SyntaxError
在异常字符串中调用“属性”这个词?
我真的不知道在这里尝试什么。我做了一个strace
,结果基本上 100% 相同,所以没有额外的线索。