Jason Vas Dias <jason.vas.d...@gmail.com> added the comment:

In case you don't believe me, believe a "C" compiler :

$ echo -e '#include <stdio.h>\nint main(){ printf("%u 
%u\\n",sizeof(int),sizeof(void*));}' > si.c
$ gcc -o si si.c
$ ./si
4 8

Any code that assumes that "sizeof(int) == sizeof(char*)" on
an x86_64 is broken, and any test that emits messages to this
effect is profoundly disconcerting . I wish I didn't have to
support python on my system.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11946>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to