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 flub
Recipients flub
Date 2009-01-14.18:33:24
SpamBayes Score 0.022027794
Marked as misclassified No
Message-id <1231958008.57.0.172561550702.issue4950@psf.upfronthosting.co.za>
In-reply-to
Content
When compiling with -Wredundant-decls gcc spots a redundant declaration:

flub@laurie:sandbox$ cat test.c 
#include <Python.h>
#include <stdio.h>

int main(void)
{
        printf("hello\n");
        return 0;
}
flub@laurie:sandbox$ gcc -I /usr/local/include/python3.0/
-Wredundant-decls test.c 
In file included from /usr/local/include/python3.0/Python.h:102,
                 from test.c:1:
/usr/local/include/python3.0/pyerrors.h:155: warning: redundant
redeclaration of ‘PyExc_BufferError’
/usr/local/include/python3.0/pyerrors.h:147: warning: previous
declaration of ‘PyExc_BufferError’ was here
flub@laurie:sandbox$

This is annoying since when developing extension modules I usually use
-Werror on top of -Wredundant-decls (among others).

Regards
Floris
History
Date User Action Args
2009-01-14 18:33:28flubsetrecipients: + flub
2009-01-14 18:33:28flubsetmessageid: <1231958008.57.0.172561550702.issue4950@psf.upfronthosting.co.za>
2009-01-14 18:33:26flublinkissue4950 messages
2009-01-14 18:33:24flubcreate