From 0dbfc409a71acc036c5ff46989ef18ac39fcb66a Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 17 Jul 2013 15:56:21 +0200 Subject: [PATCH] iteration problem test --- test/completion/arrays.py | 7 +++++++ 1 file changed, 7 insertions(+) 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 # -----------------