Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eclecticmiraclecat/5a33697dee3970acd6453dd58da2405f to your computer and use it in GitHub Desktop.
Save eclecticmiraclecat/5a33697dee3970acd6453dd58da2405f to your computer and use it in GitHub Desktop.
>>> class Foo:
... def upper(self, value):
... print(value.upper())
...
>>> class Bar:
... def __init__(self):
... self.foo = Foo()
... def __getattr__(self, name):
... return getattr(self.foo, name)
...
>>> b = Bar()
>>> b.upper('hi')
HI
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment