Merged revisions 83644 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83644 | ronald.oussoren | 2010-08-03 09:42:42 +0200 (Tue, 03 Aug 2010) | 2 lines

  Fix for issue 9455: platform.mac_ver() broken on OSX/ppc
........
This commit is contained in:
Ronald Oussoren 2010-08-03 07:43:36 +00:00
parent 6fde209207
commit 8f5a51233f
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ def _mac_ver_xml():
release = pl['ProductVersion']
versioninfo=('', '', '')
machine = os.uname()[4]
if machine == 'ppc':
if machine in ('ppc', 'Power Macintosh'):
# for compatibility with the gestalt based code
machine = 'PowerPC'