]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)
authorLysandros Nikolaou <lisandrosnik@gmail.com>
Tue, 28 Apr 2020 00:24:50 +0000 (03:24 +0300)
committerGitHub <noreply@github.com>
Tue, 28 Apr 2020 00:24:50 +0000 (01:24 +0100)
This test has been changed to always use the old parser, so no need for it to be skipped.

Lib/test/test_parser.py

index 0ee994f3b7505f1d3e6723dcf4bd8a273a9ee760..fd33d6529b1442a11b7fe1752ddd1403f7031ec8 100644 (file)
@@ -900,7 +900,6 @@ class ParserStackLimitTestCase(unittest.TestCase):
         st = parser.expr(e)
         st.compile()
 
-    @support.skip_if_new_parser("Pegen does not trigger memory error with this many parenthesis")
     def test_trigger_memory_error(self):
         e = self._nested_expression(100)
         rc, out, err = assert_python_failure('-Xoldparser', '-c', e)