diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-05-01 15:02:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 15:02:06 (GMT) |
commit | ea7297cf8f1aad4df8921a3d81a75118511afe77 (patch) | |
tree | 0dd0020b5af551ae77e61873da655005677427b3 /Lib | |
parent | 76c1b4d5c5a610c09943e1ee7ae18f1957804730 (diff) | |
download | cpython-ea7297cf8f1aad4df8921a3d81a75118511afe77.zip cpython-ea7297cf8f1aad4df8921a3d81a75118511afe77.tar.gz cpython-ea7297cf8f1aad4df8921a3d81a75118511afe77.tar.bz2 |
bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_unparse.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py index b913569..d4089a3 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", |