How to call a super method with call() or callv()?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By octopod

I’m wondering if you can call a method from the parent class with call() or callv(). I understand you can call a super method with putting a period in front e.g.

.super_method()

However, this doesn’t work in the call() or callv(). I tried these but they throw an error saying the method doesn’t exist:

call(self, ".super_method")
callv(self, ".super_method")

If anyone can find a workaround it would be appreciated. I think there’s a super keyword starting in 4.0 so if there isn’t one it’ll probably be fixed eventually.