From: Pablo Galindo Date: Fri, 1 May 2020 15:02:06 +0000 (+0100) Subject: bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837) X-Git-Tag: v3.9.0b1~221 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea7297cf8f1aad4df8921a3d81a75118511afe77;p=thirdparty%2FPython%2Fcpython.git bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837) --- diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py index b913569585a2..d4089a3fc1cd 100644 --- a/Lib/test/test_unparse.py +++ b/Lib/test/test_unparse.py @@ -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",