mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-10 15:51:51 +08:00
test for yields in expressions.
This commit is contained in:
@@ -179,6 +179,16 @@ gen().send()
|
|||||||
#?
|
#?
|
||||||
gen()()
|
gen()()
|
||||||
|
|
||||||
|
# -----------------
|
||||||
|
# yield in expression
|
||||||
|
# -----------------
|
||||||
|
|
||||||
|
def x():
|
||||||
|
a= [(yield 1)]
|
||||||
|
|
||||||
|
#? int()
|
||||||
|
next(x())
|
||||||
|
|
||||||
# -----------------
|
# -----------------
|
||||||
# yield from
|
# yield from
|
||||||
# -----------------
|
# -----------------
|
||||||
|
|||||||
Reference in New Issue
Block a user