Message331608
I reopen the issuue. Commit bb86bf4c4eaa30b1f5192dab9f389ce0bb61114d introduced a new compiler warning:
gcc -pthread -c -Wno-unused-result -Wsign-compare -g -Og -Wall -O0 -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initializers -Werror=implicit-function-declaration -I./Include/internal -I. -I./Include -DPy_BUILD_CORE -o Objects/object.o Objects/object.c
In file included from ./Include/object.h:715,
from ./Include/pytime.h:6,
from ./Include/Python.h:75,
from Objects/object.c:4:
./Include/cpython/object.h:37:51: warning: 'PyId_builtins' defined but not used [-Wunused-variable]
#define _Py_IDENTIFIER(varname) _Py_static_string(PyId_##varname, #varname)
^~~~~
./Include/cpython/object.h:36:66: note: in definition of macro '_Py_static_string'
#define _Py_static_string(varname, value) static _Py_Identifier varname = _Py_static_string_init(value)
^~~~~~~
Objects/object.c:20:1: note: in expansion of macro '_Py_IDENTIFIER'
_Py_IDENTIFIER(builtins);
^~~~~~~~~~~~~~ |
|
Date |
User |
Action |
Args |
2018-12-11 11:03:30 | vstinner | set | recipients:
+ vstinner, pitrou, kristjan.jonsson, serhiy.storchaka |
2018-12-11 11:03:30 | vstinner | set | messageid: <1544526210.11.0.788709270274.issue35444@psf.upfronthosting.co.za> |
2018-12-11 11:03:30 | vstinner | link | issue35444 messages |
2018-12-11 11:03:29 | vstinner | create | |
|