Snippets for python 3.14.5 from Alpine x86_64
Sourced from https://build.alpinelinux.org/buildlogs/build-edge-x86_64/main/python3/python3-3.14.5-r2.log.
-
./Include/internal/pycore_call.h:175:16: warning: 'small_stack' may be used uninitialized [-Wmaybe-uninitialized] 175 | return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -
Python/ceval.c:2102:34: warning: 'stack_array' may be used uninitialized [-Wmaybe-uninitialized] 2102 | _PyInterpreterFrame *frame = _PyEvalFramePushAndInit( | ^~~~~~~~~~~~~~~~~~~~~~~~ 2103 | tstate, PyStackRef_FromPyObjectNew(func), locals, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2104 | arguments, argcount, kwnames, NULL); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -
./Programs/_testembed.c:2641:1: warning: '/home/buildozer/aports/main/python3/src/Python-3.14.5/Programs/_testembed.gcda' profile count data file not found [-Wmissing-profile] 2641 | } | ^ -
Python/ceval.c:2047:38: warning: 'stack_array' may be used uninitialized [-Wmaybe-uninitialized] 2047 | _PyInterpreterFrame *new_frame = _PyEvalFramePushAndInit( | ^~~~~~~~~~~~~~~~~~~~~~~~ 2048 | tstate, func, locals, | ~~~~~~~~~~~~~~~~~~~~~ 2049 | newargs, nargs, kwnames, previous | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2050 | ); | ~