Skip to content

Commit 3d53d87

Browse files
authored
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.
1 parent d55133f commit 3d53d87

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Lib/test/test_parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,6 @@ def test_deeply_nested_list(self):
900900
st = parser.expr(e)
901901
st.compile()
902902

903-
@support.skip_if_new_parser("Pegen does not trigger memory error with this many parenthesis")
904903
def test_trigger_memory_error(self):
905904
e = self._nested_expression(100)
906905
rc, out, err = assert_python_failure('-Xoldparser', '-c', e)

0 commit comments

Comments
 (0)