Antoine Pitrou added the comment:

> > Fine with me. Having three macros is pointless complication.
> 
> Don't having two macros for one boolean value pointless complication too?

No, since you need only one to get going. Either:

#ifdef PY_LITTLE_ENDIAN
...

or:

#ifdef PY_BIG_ENDIAN
...

So this is really a simplification compared to the awkward:

#ifdef PY_ENDIAN == BIG_ENDIAN

----------

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

Reply via email to