1
0
forked from VimPlug/jedi

caches have their own module now.

This commit is contained in:
David Halter
2012-12-12 21:28:19 +01:00
parent 169b35b5a9
commit e8ddc35a1b
9 changed files with 109 additions and 97 deletions

View File

@@ -1,6 +1,7 @@
import copy
import contextlib
import cache
import parsing
import evaluate
import debug
@@ -195,7 +196,7 @@ def generate_param_array(args_tuple, parent_stmt=None):
values.append([arg])
pos = None
arr = parsing.Array(pos, parsing.Array.TUPLE, parent_stmt, values=values)
evaluate.faked_scopes.append(arr)
cache.faked_scopes.append(arr)
return arr