Kaydet (Commit) 936dfae2 authored tarafından Ned Deily's avatar Ned Deily

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

üst 75ff6d28
......@@ -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
......
......@@ -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
----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment