STINNER Victor <vstin...@python.org> added the comment:

test_lib2to3 crash if Python is built with clang when running 
test_all_project_files() of lib2to3.tests.test_all_fixers.Test_all. This test 
crash on processing the file: "Lib/lib2to3/tests/data/infinite_recursion.py".

The GH-30855 change increased the usage of the stack memory when Python is 
built with clang:
https://github.com/python/cpython/pull/30855#issuecomment-1024884758

* GCC allocates between 544 bytes (-O3) and 608 bytes (-Og) on the stack
* clang allocates between 656 bytes (-O3) and 9200 bytes (Og) on the stack

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46542>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to