mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 14:54:47 +08:00
reeneabled more complex builtin array tests
This commit is contained in:
@@ -202,9 +202,9 @@ list(set(a))[1]
|
|||||||
list(list(set(a)))[1]
|
list(list(set(a)))[1]
|
||||||
|
|
||||||
# does not yet work, because the recursion catching is not good enough (catches # to much)
|
# 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]
|
list(set(list(set(a))))[1]
|
||||||
##? int() str()
|
#? int() str()
|
||||||
list(set(set(a)))[1]
|
list(set(set(a)))[1]
|
||||||
|
|
||||||
# frozenset
|
# frozenset
|
||||||
|
|||||||
@@ -223,5 +223,5 @@ def add_to_arr(arr, a):
|
|||||||
return arr
|
return arr
|
||||||
|
|
||||||
a = [1.0]
|
a = [1.0]
|
||||||
#? int()
|
#? float() int()
|
||||||
add_to_arr(a, 1)[0]
|
add_to_arr(a, 1)[0]
|
||||||
|
|||||||
Reference in New Issue
Block a user