Python Bug 整理

1、TypeError: unbound method test() must be called with file_exist instance as first argument (got RequestHttpHandle instance instead)

涉及到一个bound的概念

class Test:
    def func(self,message):
        print message

object1=Test()
x=object1.func
x('绑定方法对象,实例是隐含的')

t=Test.func
t(object1,'未绑定的方法对象,需要传递一个实例') 

t('未绑定的方法对象,需要传递一个实例') #错误的调用

TypeError: hanle_file() takes exactly 3 arguments (4 given)

调用函数时的参数使用错误

你可能感兴趣的:(Python)