Skip to content

Instantly share code, notes, and snippets.

View public's full-sized avatar
🏠
Working from home

Alex Stapleton public

🏠
Working from home
View GitHub Profile
class Printer(object):
def __call__(*args):
print 'call', args
def __get__(*args):
print 'get', args
return args[0]
def print_stuff(*args):
print(args)