gh-140513: Fail to compile if `_Py_TAIL_CALL_INTERP` is set but `preserve_none` and `musttail` do not exist. by XChaitanyaX · Pull Request #140548 · python/cpython
added 2 commits
Fidget-Spinner
changed the title
gh-140513: We should fail to compile if
gh-140513: Fail to compile if _Py_TAIL_CALL_INTERP is set but preserve_none and musttail do not exist._Py_TAIL_CALL_INTERP is set but preserve_none and musttail do not exist.
chris-eibl added a commit to chris-eibl/cpython that referenced this pull request
… `preserve_none` and `musttail` do not exist. (pythonGH-140548) Co-authored-by: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> (cherry picked from commit 2f60b8f)
Fidget-Spinner pushed a commit that referenced this pull request
…preserve_none and musttail do not exist (GH-140548) (#140923) gh-140513: Fail to compile if `_Py_TAIL_CALL_INTERP` is set but `preserve_none` and `musttail` do not exist. (GH-140548) (cherry picked from commit 2f60b8f) Co-authored-by: Krishna Chaitanya <141550576+XChaitanyaX@users.noreply.github.com>
StanFromIreland pushed a commit to StanFromIreland/cpython that referenced this pull request
… `preserve_none` and `musttail` do not exist. (pythonGH-140548) Co-authored-by: Chris Eibl <138194463+chris-eibl@users.noreply.github.com>
This was referenced
itamaro pushed a commit that referenced this pull request
…ds on Windows (#148036) Rather than failing late when compiling e.g. a debug configuration ``` build.bat -c debug --tail-call-interp ``` with hundreds of ``` error C4737: Unable to perform required tail call. Performance may be degraded. ``` -- fail early with an explicit error message for configurations that are not supported by MSVC. This is a follow-up on #140513 / #140548
ljfp pushed a commit to ljfp/cpython that referenced this pull request
…C builds on Windows (python#148036) Rather than failing late when compiling e.g. a debug configuration ``` build.bat -c debug --tail-call-interp ``` with hundreds of ``` error C4737: Unable to perform required tail call. Performance may be degraded. ``` -- fail early with an explicit error message for configurations that are not supported by MSVC. This is a follow-up on python#140513 / python#140548