Reputation: 22153
In Django 1.11 tutorial and documentation,there's codes style as super(child,self)
everywhere.
for instance:
return super(ContactView, self).form_valid(form)
What's the advantage of it? to reminder you in the current class for memory?
Upvotes: 2
Views: 72