mirror of
https://github.com/davidhalter/jedi.git
synced 2026-02-03 08:33:02 +08:00
Fix: iterators are working smoothly now. Finally tests are passing again.
This commit is contained in:
@@ -120,7 +120,7 @@ def gen():
|
||||
a, b = next(gen())
|
||||
#? int()
|
||||
a
|
||||
#? str()
|
||||
#? str() float()
|
||||
b
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
def generator():
|
||||
yield 1
|
||||
|
||||
#! 12 type-error-generator
|
||||
#! 11 type-error-not-subscriptable
|
||||
generator()[0]
|
||||
|
||||
list(generator())[0]
|
||||
|
||||
Reference in New Issue
Block a user