summaryrefslogtreecommitdiff
path: root/Modules/_struct.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-17 12:06:44 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-17 12:06:44 +0200
commit444b8a182b5a690fdb3e4d28ca8a61de27949178 (patch)
treeba0f608b985a89c2a4baee4bc0e07cb461443092 /Modules/_struct.c
parentf31fbd0341e56d6d7f729688befbc0edc9379802 (diff)
parentaa3eafec628637ab0369d1268934eb6201cf32d1 (diff)
downloadcpython-444b8a182b5a690fdb3e4d28ca8a61de27949178.tar.gz
Merge rephrasing with 3.3.
Diffstat (limited to 'Modules/_struct.c')
-rw-r--r--Modules/_struct.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/Modules/_struct.c b/Modules/_struct.c
index 0cd0512dcf..6e8759bebb 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -1199,12 +1199,11 @@ whichtable(char **pfmt)
case '!': /* Network byte order is big-endian */
return bigendian_table;
case '=': { /* Host byte order -- different from native in alignment! */
- int n = 1;
- char *p = (char *) &n;
- if (*p == 1)
- return lilendian_table;
- else
- return bigendian_table;
+#if PY_LITTLE_ENDIAN
+ return lilendian_table;
+#else
+ return bigendian_table;
+#endif
}
default:
--*pfmt; /* Back out of pointer increment */
@@ -2098,13 +2097,13 @@ PyInit__struct(void)
/* Check endian and swap in faster functions */
{
- int one = 1;
formatdef *native = native_table;
formatdef *other, *ptr;
- if ((int)*(unsigned char*)&one)
- other = lilendian_table;
- else
- other = bigendian_table;
+#if PY_LITTLE_ENDIAN
+ other = lilendian_table;
+#else
+ other = bigendian_table;
+#endif
/* Scan through the native table, find a matching
entry in the endian table and swap in the
native implementations whenever possible