Guest User

Untitled

a guest
Jul 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Base(object):
  2. def foo(self, a, b, c, d=xyzzy):
  3. pass
  4.  
  5. class Derived(Base):
  6. def foo(self, a, b, c, d=xyzzy):
  7. super(Derived, self).foo(a, b, c, d)
Add Comment
Please, Sign In to add comment