Ronald Oussoren <ronaldousso...@mac.com> added the comment:

On 2 Aug, 2010, at 21:49, Bill Janssen wrote:

> 
> 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'

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

Ronald

----------
Added file: http://bugs.python.org/file18333/smime.p7s

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9455>
_______________________________________

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to