mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
8 lines
102 B
Python
8 lines
102 B
Python
def generator():
|
|
yield 1
|
|
|
|
#! 11 type-error-not-subscriptable
|
|
generator()[0]
|
|
|
|
list(generator())[0]
|