Dada la siguiente clase de ejemplo:Calling métodoestático dentro de contenedores nivel de clase de inicialización
class Foo:
def aStaticMethod():
return "aStaticMethod"
aVariable = staticmethod(aStaticMethod)
aTuple = (staticmethod(aStaticMethod),)
aList = [staticmethod(aStaticMethod)]
print Foo.aVariable()
print Foo.aTuple[0]()
print Foo.aList[0]()
¿por qué el llamado a aVariable
funciona correctamente pero con la aTuple
y aList
se devuelve el error 'staticmethod' object is not callable
?