Skip to content

Instantly share code, notes, and snippets.

@anossov
Created April 18, 2013 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anossov/5411655 to your computer and use it in GitHub Desktop.
Save anossov/5411655 to your computer and use it in GitHub Desktop.
method attributes
class A(object):
def x(self):
return self.x.y
x.y = 123
class B(object):
def x(self):
return B.x.y
x.y = 123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment