Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Parent(object):
  2. def do_something(self, a):
  3. pass
  4.  
  5. class MyImpl(object):
  6. def my_do_something(self, a, MY_B):
  7. pass
  8. def do_something(self, a):
  9. self.my_do_something(a, None)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement