[issue4950] Redundant declaration in pyerrors.h

2009-01-15 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r68629. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue4950] Redundant declaration in pyerrors.h

2009-01-14 Thread Floris Bruynooghe
New submission from Floris Bruynooghe : When compiling with -Wredundant-decls gcc spots a redundant declaration: f...@laurie:sandbox$ cat test.c #include #include int main(void) { printf("hello\n"); return 0; } f...@laurie:sandbox$ gcc -I /usr/local/include/python3.0/ -Wredun