@@ -543,21 +543,26 @@ def test_compiler_recursion_limit(self):
543
543
# XXX (ncoghlan): duplicating the scaling factor here is a little
544
544
# ugly. Perhaps it should be exposed somewhere...
545
545
fail_depth = sys .getrecursionlimit () * 3
546
+ crash_depth = sys .getrecursionlimit () * 300
546
547
success_depth = int (fail_depth * 0.75 )
547
548
548
- def check_limit (prefix , repeated ):
549
+ def check_limit (prefix , repeated , mode = "single" ):
549
550
expect_ok = prefix + repeated * success_depth
550
- self .compile_single (expect_ok )
551
- broken = prefix + repeated * fail_depth
552
- details = "Compiling ({!r} + {!r} * {})" .format (
553
- prefix , repeated , fail_depth )
554
- with self .assertRaises (RecursionError , msg = details ):
555
- self .compile_single (broken )
551
+ compile (expect_ok , '<test>' , mode )
552
+ for depth in (fail_depth , crash_depth ):
553
+ broken = prefix + repeated * depth
554
+ details = "Compiling ({!r} + {!r} * {})" .format (
555
+ prefix , repeated , depth )
556
+ with self .assertRaises (RecursionError , msg = details ):
557
+ compile (broken , '<test>' , mode )
556
558
557
559
check_limit ("a" , "()" )
558
560
check_limit ("a" , ".b" )
559
561
check_limit ("a" , "[0]" )
560
562
check_limit ("a" , "*a" )
563
+ # XXX Crashes in the parser.
564
+ # check_limit("a", " if a else a")
565
+ # check_limit("if a: pass", "\nelif a: pass", mode="exec")
561
566
562
567
def test_null_terminated (self ):
563
568
# The source code is null-terminated internally, but bytes-like
0 commit comments