Skip to content

Instantly share code, notes, and snippets.

@ericsk
Created November 9, 2008 17:12
Show Gist options
  • Save ericsk/23306 to your computer and use it in GitHub Desktop.
Save ericsk/23306 to your computer and use it in GitHub Desktop.
class A(object):
def x(self):
print 'x'
def __getattr__(self, name):
if name == 'y':
return self.x
a = A()
a.y()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment