]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837)
authorPablo Galindo <Pablogsal@gmail.com>
Fri, 1 May 2020 15:02:06 +0000 (16:02 +0100)
committerGitHub <noreply@github.com>
Fri, 1 May 2020 15:02:06 +0000 (08:02 -0700)
Lib/test/test_unparse.py

index b913569585a21bb236f8fb1c94b87ef59ecb9db3..d4089a3fc1cdf8f27d17dbbec7619509eba637a5 100644 (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",