1
0
forked from VimPlug/jedi

move mixin to compiled/fake to structure it better

This commit is contained in:
Dave Halter
2014-01-10 16:38:13 +01:00
parent 8854206f2a
commit 400b0a4aa7
8 changed files with 0 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
def proxy(object, callback=None):
return object
class ref():
def __init__(self, object, callback=None):
self.__object = object
def __call__(self):
return self.__object