Update RustPython to support *tuple annotations (#3178)

This commit is contained in:
Charlie Marsh 2023-02-23 11:58:38 -05:00 committed by GitHub
parent 1e7233a8eb
commit 09f8c487ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 6 deletions

View file

@ -107,3 +107,7 @@ class Foo:
# ANN101
def foo(self, /, a: int, b: int) -> int:
pass
# OK
def f(*args: *tuple[int]) -> None: ...