1
0
forked from VimPlug/jedi

Fix: iterators are working smoothly now. Finally tests are passing again.

This commit is contained in:
Dave Halter
2015-12-10 04:37:23 +01:00
parent e23f453a11
commit 9bd6e6c340
7 changed files with 45 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
def generator():
yield 1
#! 12 type-error-generator
#! 11 type-error-not-subscriptable
generator()[0]
list(generator())[0]