mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 11:00:06 +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]
|