Bug 1598134 - configure and unit test performance regressed by inspect.stack() call from bug 1582155 r=mshal,froydnj

Differential Revision: https://phabricator.services.mozilla.com/D54038

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ricky Stewart 2019-11-21 14:59:19 +00:00
Родитель 5ac14e224d
Коммит 35f7bc06ec
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -22,7 +22,7 @@ _ALL_CATEGORIES = (
def _infer_option_category(define_depth):
stack_frame = inspect.stack()[3 + define_depth]
stack_frame = inspect.stack(0)[3 + define_depth]
try:
path = os.path.relpath(stack_frame[0].f_code.co_filename)
except ValueError: