Skip to content

Commit

Permalink
Update the ahead of time tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhalter committed Jan 30, 2018
1 parent 6b535c0 commit 2b9429b
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions test/completion/pep0484_aheadoftime.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,16 @@

somelist = [1, 2, 3, "A", "A"]
element : int
for element in somelist[0:3]:
for element in somelist:
#? int()
element


otherlist = [1, "A"]
for e in otherlist:
#? int() str()
e


test_string: str = "Hello, world!"
test_string: str = NOT_DEFINED
#? str()
test_string


char: str
for char in test_string:
for char in NOT_DEFINED:
#? str()
char

0 comments on commit 2b9429b

Please sign in to comment.