From c60b67d18272de914b3ee312af1756a4fb43f4a9 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Mon, 8 Jan 2024 08:19:16 -0800 Subject: [PATCH] Raise the python recursion limit the autohinter is currently hitting the default Python stack limit; we should try raising it, this is the intended britney behavior and the system is here primarily to run proposed-migration so we should not be constrained by the default --- britney.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/britney.py b/britney.py index 9b11347..53e6060 100755 --- a/britney.py +++ b/britney.py @@ -236,6 +236,8 @@ from britney2.utils import (log_and_format_old_libraries, __author__ = 'Fabio Tranchitella and the Debian Release Team' __version__ = '2.0' +# "temporarily" raise recursion limit for the auto hinter +sys.setrecursionlimit(2000) class Britney(object): """Britney, the Debian testing updater script