我有蟒蛇2.7和扭曲的框架。我正在使用twisted-theseus==0.14.1.3库。
我的twistd插件的前两行代码如下:
from theseus import Tracer
t = Tracer()
t.install()
我失败了,只有一个例外:
exceptions.TypeError:install()只接受一个参数(给定0)
这里怎么了?似乎不是在对象接收器上而是在类上调用了install()。
最佳答案
这似乎是由于扭曲的忒修斯的一个已知问题:https://github.com/habnabit/twisted-theseus/issues/1。
Github问题有一个解决方案:
$ pip install cython
$ git clone https://github.com/habnabit/twisted-theseus
$ cd twisted-theseus
$ pip install .
关于python - 方法调用解析为类的函数调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57203063/