Files
jedi/mixin/_weakref.py
2012-09-04 16:21:17 +02:00

9 lines
197 B
Python

def proxy(object, callback=None):
return object
class ref():
def __init__(self, object, callback=None):
self.__object = object
def __call__(self):
return self.__object