[issue6375] compile failure in Modules/python.c

2010-02-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: Closing this as unreproducible. -- resolution: -> works for me status: open -> closed ___ Python tracker ___ _

[issue6375] compile failure in Modules/python.c

2009-06-29 Thread Martin v . Löwis
Martin v. Löwis added the comment: Can somebody explain the error? The conversion looks quite valid to me, so it seems to be a compiler bug. -- nosy: +loewis ___ Python tracker _

[issue6375] compile failure in Modules/python.c

2009-06-29 Thread Adam Golebiowski
Adam Golebiowski added the comment: nope, a gcc-4.4 based Linux distribution. It looks like the same problem happens with Issue4146, but it touches other part of that file. -- ___ Python tracker __

[issue6375] compile failure in Modules/python.c

2009-06-29 Thread Jerry Chen
Jerry Chen added the comment: On OpenBSD by chance? Looks similar to Issue4146 -- nosy: +jcsalterego ___ Python tracker ___ ___ Python

[issue6375] compile failure in Modules/python.c

2009-06-29 Thread Adam Golebiowski
New submission from Adam Golebiowski : Python-3.1 fails to compile with: ./Modules/python.c: In function 'wchar_t* char2wchar(char*)': ./Modules/python.c:60: error: invalid conversion from 'void*' to 'wchar_t*' The attached patch fixes this. -- files: python3-cast-fix.patch keywords: pa