Skip to content

Instantly share code, notes, and snippets.

@notsobad
Created August 6, 2015 16:24
Show Gist options
  • Save notsobad/58886316c30c2b13806f to your computer and use it in GitHub Desktop.
Save notsobad/58886316c30c2b13806f to your computer and use it in GitHub Desktop.
class FakeClass():
def __getattr__(self, key):
def f(*args, **kwargs):
return
return f
f = FakeClass()
f.log('xxx', k1="xxxxx")
f.test('yyy', 'zzzz')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment