Bill Janssen <bill.jans...@gmail.com> 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 <rep...@bugs.python.org>
<http://bugs.python.org/issue9455>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to