cpython/Misc/NEWS.d/next/Build/2018-03-08-20-25-29.bpo-330...

6 lines
321 B
ReStructuredText
Raw Normal View History

gcc 8 has added a new warning heuristic to detect invalid function casts and
a stock python build seems to hit that warning quite often. The most common
is the cast of a METH_NOARGS function (that uses just one argument) to a
PyCFunction. Fix this by adding a dummy argument to all functions that
implement METH_NOARGS.