예제 #1
0
 def wrapper():
     lst = snippet.call_five()
     res = list((len(lst), lst[0]))
     expected = [1, 5]
     return res == expected
예제 #2
0
 def wrapper():
     lst = snippet.call_five()
     return len(lst), lst[0]
예제 #3
0
파일: test_typed.py 프로젝트: ieure/pypy
 def wrapper():
     lst = snippet.call_five()
     return len(lst), lst[0]
예제 #4
0
 def wrapper():
     lst = snippet.call_five()
     res = list((len(lst), lst[0]))
     expected = [1, 5]
     return res == expected