Python3和cx_freeze - TypeError位置参数

时间:2013-10-02 09:17:09

标签: python arguments cx-freeze

我使用cx_Freeze和Python 3.2生成了一个exe文件,但是当我运行该文件时,它会在函数调用时停止并出现以下错误:

TypeError:foo()只需要4个位置参数(给定5个)

这是我的代码:

class myClass:
   foo(self, arg1, arg2, arg3, arg4):
      pass
      ....
      return

该函数调用如:

myVar = mcClassObject.foo(otherClass.member, "a", "b", "c")

在exclipse环境中一切正常。

任何帮助表示感谢。

干杯, 乌利

0 个答案:

没有答案