diff --git a/test/completion/arrays.py b/test/completion/arrays.py index 3e22e933..13b1ea1c 100644 --- a/test/completion/arrays.py +++ b/test/completion/arrays.py @@ -208,6 +208,13 @@ f() #? 9 ['str'] {str: str} +# iteration problem (detected with sith) +d = dict({'a':''}) +def y(a): + return a +#? str() +y(**d) + # ----------------- # with variable as index # -----------------