9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
def proxy(object, callback=None):
|
|
return object
|
|
|
|
class weakref():
|
|
def __init__(self, object, callback=None):
|
|
self.__object = object
|
|
def __call__(self):
|
|
return self.__object
|