bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837)

This commit is contained in:
Pablo Galindo 2020-05-01 16:02:06 +01:00 committed by GitHub
parent 76c1b4d5c5
commit ea7297cf8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -327,7 +327,6 @@ class UnparseTestCase(ASTTestCase):
ast.Constant(value=(1, 2, 3), kind=None), "(1, 2, 3)"
)
@test.support.skip_if_new_parser("Pegen does not support type annotation yet")
def test_function_type(self):
for function_type in (
"() -> int",