Implement F704 (#66)

This commit is contained in:
Charlie Marsh 2022-08-31 19:11:59 -04:00 committed by GitHub
parent c28ac75591
commit 2bac3027a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,10 @@
def f() -> int:
yield 1
class Foo:
yield 2
yield 3
yield from 3