Benefit of using the super() method

So in my example code, I would only need to do this:
super().MyFrame() ???

no, it would be:

class MyFrame(wx.Frame):
    def __Init__(self, *args, **kwargs)
        super().__init__(*args, **kwargs)

(I think -- I'm not running py3...)

see the post "super considered super":

-Chris

···

On Wed, Jun 5, 2013 at 10:35 AM, "Boštjan Mejak" <mejak.bost@gmail.com> wrote:

So in my example code, I would only need to do this:
super().MyFrame() ???

--

Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception

Chris.Barker@noaa.gov