[issue28105] warning: ‘nkwargs’ may be used uninitialized

2016-09-12 Thread STINNER Victor
STINNER Victor added the comment: It should be fixed. Thanks for the report. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue28105] warning: ‘nkwargs’ may be used uninitialized

2016-09-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset e67e685a1301 by Victor Stinner in branch 'default': Fix warning in _PyCFunction_FastCallKeywords() https://hg.python.org/cpython/rev/e67e685a1301 -- nosy: +python-dev ___ Python tracker

[issue28105] warning: ‘nkwargs’ may be used uninitialized

2016-09-12 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Objects/methodobject.c: In function ‘_PyCFunction_FastCallKeywords’: Objects/methodobject.c:281:24: warning: ‘nkwargs’ may be used uninitialized in this function [-Wmaybe-uninitialized] assert((nargs == 0 && nkwargs == 0) || stack != NULL);