mirror of
https://github.com/davidhalter/jedi.git
synced 2026-05-16 21:44:56 +08:00
Update the ahead of time tests
This commit is contained in:
@@ -4,23 +4,16 @@
|
|||||||
|
|
||||||
somelist = [1, 2, 3, "A", "A"]
|
somelist = [1, 2, 3, "A", "A"]
|
||||||
element : int
|
element : int
|
||||||
for element in somelist[0:3]:
|
for element in somelist:
|
||||||
#? int()
|
#? int()
|
||||||
element
|
element
|
||||||
|
|
||||||
|
test_string: str = NOT_DEFINED
|
||||||
otherlist = [1, "A"]
|
|
||||||
for e in otherlist:
|
|
||||||
#? int() str()
|
|
||||||
e
|
|
||||||
|
|
||||||
|
|
||||||
test_string: str = "Hello, world!"
|
|
||||||
#? str()
|
#? str()
|
||||||
test_string
|
test_string
|
||||||
|
|
||||||
|
|
||||||
char: str
|
char: str
|
||||||
for char in test_string:
|
for char in NOT_DEFINED:
|
||||||
#? str()
|
#? str()
|
||||||
char
|
char
|
||||||
|
|||||||
Reference in New Issue
Block a user