Blame fix-test_structmember-on-64bit-bigendian.patch

b0a6ae1
diff -up Python-2.7.3/Modules/_testcapimodule.c.fix-test_structmember-on-64bit-bigendian Python-2.7.3/Modules/_testcapimodule.c
b0a6ae1
--- Python-2.7.3/Modules/_testcapimodule.c.fix-test_structmember-on-64bit-bigendian	2012-04-09 19:07:33.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Modules/_testcapimodule.c	2012-04-12 17:42:55.725766488 -0400
b0a6ae1
@@ -1813,7 +1813,7 @@ test_structmembers_new(PyTypeObject *typ
b0a6ae1
         ;
b0a6ae1
     test_structmembers *ob;
b0a6ae1
     const char *s = NULL;
b0a6ae1
-    Py_ssize_t string_len = 0;
b0a6ae1
+    int string_len = 0;
b0a6ae1
     ob = PyObject_New(test_structmembers, type);
b0a6ae1
     if (ob == NULL)
b0a6ae1
         return NULL;