forked from VimPlug/jedi
Avoid aborting search for yields when they are still reachable, see #683
This commit is contained in:
@@ -78,6 +78,28 @@ g = iter([1.0])
|
||||
#? float()
|
||||
next(g)
|
||||
|
||||
x, y = Get()
|
||||
#? int() str()
|
||||
x
|
||||
#? int() str()
|
||||
x
|
||||
|
||||
class Iter:
|
||||
def __iter__(self):
|
||||
yield ""
|
||||
i = 0
|
||||
while True:
|
||||
v = 1
|
||||
yield v
|
||||
i += 1
|
||||
a, b, c = Iter()
|
||||
#? str() int()
|
||||
a
|
||||
#? str() int()
|
||||
b
|
||||
#? str() int()
|
||||
c
|
||||
|
||||
|
||||
# -----------------
|
||||
# __next__
|
||||
|
||||
Reference in New Issue
Block a user