Python tips & tricks

Python

Monkey-patch instance methods

def foo(self):
  # ...

instance.foo = types.MethodType(foo, instance, instance.__class__)