bpo-40459: Fix NameError in platform.py (GH-19855)
(cherry picked from commit 1e7e4519a8
)
Co-authored-by: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com>
This commit is contained in:
parent
70fe95cdc9
commit
efc782d29e
|
@ -395,9 +395,9 @@ def win32_ver(release='', version='', csd='', ptype=''):
|
|||
else:
|
||||
try:
|
||||
cvkey = r'SOFTWARE\Microsoft\Windows NT\CurrentVersion'
|
||||
with winreg.OpenKeyEx(HKEY_LOCAL_MACHINE, cvkey) as key:
|
||||
ptype = QueryValueEx(key, 'CurrentType')[0]
|
||||
except:
|
||||
with winreg.OpenKeyEx(winreg.HKEY_LOCAL_MACHINE, cvkey) as key:
|
||||
ptype = winreg.QueryValueEx(key, 'CurrentType')[0]
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
return release, version, csd, ptype
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
:func:`platform.win32_ver` now produces correct *ptype* strings instead of empty strings.
|
Loading…
Reference in New Issue