Python 수퍼()가 TypeError를 발생시킴 Python 2.5에서 다음 코드는TypeError: >>> class X: def a(self): print "a" >>> class Y(X): def a(self): super(Y,self).a() print "b" >>> c = Y() >>> c.a() Traceback (most recent call last): File "", line 1, in File "", line 3, in a TypeError: super() argument 1 must be type, not classobj 교체할 경우class X와 함께class X(object)그건 작동할 것이다.이에 대한 설명은?그 이유는 2.x 시리즈는 에서 확장되는 것을 의미하는 새로운 스타..