Issue #20229: Avoid plistlib deprecation warning in platform.mac_ver().

This commit is contained in:
Ned Deily 2014-01-13 11:34:19 -08:00
parent 75ff6d284a
commit 936dfae2e2
2 changed files with 4 additions and 1 deletions

View File

@ -649,7 +649,8 @@ def _mac_ver_xml():
except ImportError:
return None
pl = plistlib.readPlist(fn)
with open(fn, 'rb') as f:
pl = plistlib.load(f)
release = pl['ProductVersion']
versioninfo = ('', '', '')
machine = os.uname().machine

View File

@ -65,6 +65,8 @@ Library
- Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
- Issue #20229: Avoid plistlib deprecation warning in platform.mac_ver().
IDLE
----