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 Jason.Vas.Dias
Recipients Jason.Vas.Dias, r.david.murray
Date 2011-04-29.10:35:00
SpamBayes Score 3.6286295e-07
Marked as misclassified No
Message-id <1304073301.44.0.122454074735.issue11946@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2011-04-29 10:35:01Jason.Vas.Diassetrecipients: + Jason.Vas.Dias, r.david.murray
2011-04-29 10:35:01Jason.Vas.Diassetmessageid: <1304073301.44.0.122454074735.issue11946@psf.upfronthosting.co.za>
2011-04-29 10:35:00Jason.Vas.Diaslinkissue11946 messages
2011-04-29 10:35:00Jason.Vas.Diascreate