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 jasper
Recipients jasper, mark.dickinson
Date 2009-11-10.16:59:15
SpamBayes Score 2.3536108e-05
Marked as misclassified No
Message-id <1257872357.78.0.5611347467.issue7296@psf.upfronthosting.co.za>
In-reply-to
Content
this little test program:
#include <unistd.h>
int main(int argc, char*argv[])
{
  printf("short = %d\n", sizeof(short));
  printf("int = %d\n", sizeof(int));
  printf("float = %d\n", sizeof(float));
  printf("long = %d\n", sizeof(long));
  printf("double = %d\n", sizeof(double));
  printf("long long = %d\n", sizeof(long long));
  printf("double long = %d\n", sizeof(double long));
  return 0;
}
gives the following values on mips64:
short = 2
int = 4
float = 4
long = 8
double = 8
long long = 8
double long = 16

is there any other thing I should check?
History
Date User Action Args
2009-11-10 16:59:17jaspersetrecipients: + jasper, mark.dickinson
2009-11-10 16:59:17jaspersetmessageid: <1257872357.78.0.5611347467.issue7296@psf.upfronthosting.co.za>
2009-11-10 16:59:16jasperlinkissue7296 messages
2009-11-10 16:59:15jaspercreate