diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-04-28 00:24:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 00:24:50 (GMT) |
commit | 3d53d8756f0403eec6a4e12f183103d651bed6c5 (patch) | |
tree | 2c6044f3f9352aa4ae30c6961a870d7c3b858eda /Lib/test/test_parser.py | |
parent | d55133f49fe678fbf047a647aa8bb8b520410e8d (diff) | |
download | cpython-3d53d8756f0403eec6a4e12f183103d651bed6c5.zip cpython-3d53d8756f0403eec6a4e12f183103d651bed6c5.tar.gz cpython-3d53d8756f0403eec6a4e12f183103d651bed6c5.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_parser.py')
-rw-r--r-- | Lib/test/test_parser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py index 0ee994f..fd33d65 100644 --- a/Lib/test/test_parser.py +++ b/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) |