I am having a hard time figuring out the purpose some code that I've come across.
The code has a class Foo
, which has an __init__
method that takes multiple arguments. From what I've learned of Python so far, by calling Foo('bar')
, it will pass this string as a parameter to __init__
(which I think is supposed to be the equivalent of a constructor).
But the issue I am having is that the code I am looking at is calling Foo.__init__('bar')
directly. What is the purpose of this? I almost feel that I am missing some other purpose behind __init__
.