This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author janssen
Recipients janssen, ronaldoussoren
Date 2010-08-02.19:49:35
SpamBayes Score 0.0005645774
Marked as misclassified No
Message-id <1280778576.54.0.912045361692.issue9455@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2010-08-02 19:49:36janssensetrecipients: + janssen, ronaldoussoren
2010-08-02 19:49:36janssensetmessageid: <1280778576.54.0.912045361692.issue9455@psf.upfronthosting.co.za>
2010-08-02 19:49:35janssenlinkissue9455 messages
2010-08-02 19:49:35janssencreate