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

Pablo Galindo webhook-mailer at python.org
Fri May 1 11:02:14 EDT 2020


https://github.com/python/cpython/commit/ea7297cf8f1aad4df8921a3d81a75118511afe77
commit: ea7297cf8f1aad4df8921a3d81a75118511afe77
branch: master
author: Pablo Galindo <Pablogsal at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-05-01T08:02:06-07:00
summary:

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

files:
M Lib/test/test_unparse.py

diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py
index b913569585a21..d4089a3fc1cdf 100644
--- a/Lib/test/test_unparse.py
+++ b/Lib/test/test_unparse.py
@@ -327,7 +327,6 @@ def test_constant_tuples(self):
             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",



More information about the Python-checkins mailing list