This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author verticalduck
Recipients verticalduck
Date 2011-07-20.15:16:31
SpamBayes Score 0.00045828932
Marked as misclassified No
Message-id <1311174991.79.0.412639363077.issue12595@psf.upfronthosting.co.za>
In-reply-to
Content
Compiling 'Python.h' with g++ and -Wredundant-decls produces warnings

Testcase:

test.cpp:
#include <Python.h>
int main() { return 0; }

g++ test.cpp -I/usr/include/python3.2mu/ -Wredundant-decls
In file included from /usr/include/python3.2mu/Python.h:106,
                 from test.cpp:1:
/usr/include/python3.2mu/pyerrors.h:73: warning: redundant redeclaration of ‘void Py_FatalError(const char*)’ in same scope
/usr/include/python3.2mu/pydebug.h:29: warning: previous declaration of ‘void Py_FatalError(const char*)’
History
Date User Action Args
2011-07-20 15:16:31verticalducksetrecipients: + verticalduck
2011-07-20 15:16:31verticalducksetmessageid: <1311174991.79.0.412639363077.issue12595@psf.upfronthosting.co.za>
2011-07-20 15:16:31verticalducklinkissue12595 messages
2011-07-20 15:16:31verticalduckcreate