def set_recursion_limit_at_depth(depth, limit):
     recursion_depth = get_recursion_depth()
     if recursion_depth >= depth:
         with self.assertRaises(RecursionError) as cm:
             sys.setrecursionlimit(limit)
         self.assertRegex(str(cm.exception),
                          "cannot set the recursion limit to [0-9]+ "
                          "at the recursion depth [0-9]+: "
                          "the limit is too low")
     else:
         set_recursion_limit_at_depth(depth, limit)
示例#2
0
 def set_recursion_limit_at_depth(depth, limit):
     recursion_depth = get_recursion_depth()
     if recursion_depth >= depth:
         with self.assertRaises(RecursionError) as cm:
             sys.setrecursionlimit(limit)
         self.assertRegex(str(cm.exception),
                          "cannot set the recursion limit to [0-9]+ "
                          "at the recursion depth [0-9]+: "
                          "the limit is too low")
     else:
         set_recursion_limit_at_depth(depth, limit)