mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
10 lines
76 B
Python
10 lines
76 B
Python
def f() -> int:
|
|
yield 1
|
|
|
|
|
|
class Foo:
|
|
yield 2
|
|
|
|
|
|
yield 3
|
|
yield from 3
|