Skip to content

Instantly share code, notes, and snippets.

@jrabbit
Created September 12, 2015 23:07
Show Gist options
  • Save jrabbit/eaa4428ce4930ff8fa3b to your computer and use it in GitHub Desktop.
Save jrabbit/eaa4428ce4930ff8fa3b to your computer and use it in GitHub Desktop.
# coding: utf-8
class Timbo():
foobar = 5
def foo(self):
self.foobar += 1
t = Timbo()
t.foobar
t.foo()
t
t.foo
t.foobar
x = Timbo()
x
x.foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment