1
0
forked from VimPlug/jedi

the last commit featured an incomplete caching for compiled objects. The current one should improve this.

This commit is contained in:
Dave Halter
2014-04-13 21:55:29 +02:00
parent 4bc55be103
commit 3fced34544
2 changed files with 19 additions and 7 deletions

View File

@@ -86,6 +86,7 @@ class GeneratorMethod(object):
return self._generator.iter_content()
def __getattr__(self, name):
print(self, name)
return getattr(self._builtin_func, name)