From 61ca2c74b4f690df0abdd662c7d8950d3bb7a5d7 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 14 Aug 2012 13:07:21 +0200 Subject: [PATCH] reeneabled more complex builtin array tests --- test/completion/arrays.py | 4 ++-- test/completion/dynamic.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/completion/arrays.py b/test/completion/arrays.py index 23670d57..ccbd07a9 100644 --- a/test/completion/arrays.py +++ b/test/completion/arrays.py @@ -202,9 +202,9 @@ list(set(a))[1] list(list(set(a)))[1] # does not yet work, because the recursion catching is not good enough (catches # to much) -##? int() str() +#? int() str() list(set(list(set(a))))[1] -##? int() str() +#? int() str() list(set(set(a)))[1] # frozenset diff --git a/test/completion/dynamic.py b/test/completion/dynamic.py index 5f89b9c4..24dac2e5 100644 --- a/test/completion/dynamic.py +++ b/test/completion/dynamic.py @@ -223,5 +223,5 @@ def add_to_arr(arr, a): return arr a = [1.0] -#? int() +#? float() int() add_to_arr(a, 1)[0]