6 ms·
You're correct, that is the default behaviour of super. My intention wasn't to say that super only works like that when you've defined the method like `def foo
by matsadler 13y ago
You're correct, that is the default behaviour of super.
My intention wasn't to say that super only works like that when you've defined the method like `def foo( * )` but rather `def foo( * )` is an alternative to having to name your arguments when you're not even going to use them as they are automatically passed with bare super.
- losvedir 13y agoAh, yes, of course. I understand now. Skimmed a bit too fast there and misunderstood what you were getting at. Thanks!