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 ronaldoussoren
Recipients janssen, ronaldoussoren
Date 2010-08-03.06:43:31
SpamBayes Score 1.668283e-07
Marked as misclassified No
Message-id <D342A094-4644-4994-9BF8-107ADBF54DF0@mac.com>
In-reply-to <1280778576.54.0.912045361692.issue9455@psf.upfronthosting.co.za>
Content
On 2 Aug, 2010, at 21:49, Bill Janssen wrote:

> 
> Bill Janssen <bill.janssen@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'

That's correct. Thanks for catching this, I will fix this asap.

Ronald
Files
File name Uploaded
smime.p7s ronaldoussoren, 2010-08-03.06:43:30
History
Date User Action Args
2010-08-03 06:43:33ronaldoussorensetrecipients: + ronaldoussoren, janssen
2010-08-03 06:43:31ronaldoussorenlinkissue9455 messages
2010-08-03 06:43:31ronaldoussorencreate