mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-17 19:15:55 +08:00
9 lines
197 B
Python
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
|