1
0
forked from VimPlug/jedi

magic_method -> magic_function

This commit is contained in:
Dave Halter
2014-01-09 17:06:02 +01:00
parent db149a84a8
commit f755e615c9
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -375,10 +375,10 @@ class Function(use_metaclass(CachedMetaClass, pr.IsScope)):
return Function(self._evaluator, self.base_func, True)
return decorated_func
def get_magic_method_names(self):
def get_magic_function_names(self):
return compiled.magic_function_scope(self._evaluator).get_defined_names()
def get_magic_method_scope(self):
def get_magic_function_scope(self):
return compiled.magic_function_scope(self._evaluator)
def __getattr__(self, name):