Renamed mixin .py files to .pym (fixes davidhalter/jedi-vim#41)

This commit is contained in:
Danilo Bargen
2012-11-20 11:21:11 +01:00
parent 03f4dd5516
commit 9f20243dd3
6 changed files with 1 additions and 1 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