diff options
Diffstat (limited to 'Lib/test/test_flufl.py')
-rw-r--r-- | Lib/test/test_flufl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_flufl.py b/Lib/test/test_flufl.py index 297a8aa90c..35ab934ab3 100644 --- a/Lib/test/test_flufl.py +++ b/Lib/test/test_flufl.py @@ -1,9 +1,10 @@ import __future__ import unittest import sys +from test import support -@unittest.skipIf(sys.flags.use_peg, "Not supported by pegen yet") +@support.skip_if_new_parser("Not supported by pegen yet") class FLUFLTests(unittest.TestCase): def test_barry_as_bdfl(self): |