File "MT_class.py", line 12, in run apply(self.func, self.args)NameError: name ‘apply‘ is not defined
python3已经不再支持apply
直接改成self.func(*self.args)就好了
name 'apply' is not defined
原文:http://www.cnblogs.com/AbsolutelyPerfect/p/7661788.html