Bill Janssen <[email protected]> added the comment:
So the problem is in the _mac_ver_xml() routine in Lib/platform.py, which says:
machine = os.uname()[4]
if machine == 'ppc':
# for compatibility with the gestalt based code
machine = 'PowerPC'
and perhaps should say:
machine = os.uname()[4]
if machine in ('ppc', 'Power Macintosh'):
# for compatibility with the gestalt based code
machine = 'PowerPC'
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue9455>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com