Fix for issue 9455: platform.mac_ver() broken on OSX/ppc
diff --git a/Lib/platform.py b/Lib/platform.py
index f856a43..8051041 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -777,7 +777,7 @@
     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'