[ create a new paste ] login | about

Project: python
Link: http://python.codepad.org/kx5e2erY    [ raw code | output | fork ]

Python, pasted on Apr 4:
1
2
3
4
5
6
class foo(object): pass
f = foo()
def bar(*a, **b):
    print a, b
f.b = bar
f.b()


Output:
1
() {}


Create a new paste based on this one


Comments: