Browse Source

bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)

This test has been changed to always use the old parser, so no need for it to be skipped.
pull/19751/head
Lysandros Nikolaou 6 years ago
committed by GitHub
parent
commit
3d53d8756f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      Lib/test/test_parser.py

1
Lib/test/test_parser.py

@ -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)

Loading…
Cancel
Save