Fix #16176. Properly identify Windows 8 via platform.platform()

Add handling of the 6.2 release line, aka Windows 8 and Windows 2012 Server.
This commit is contained in:
Brian Curtin 2012-10-11 16:16:50 -05:00
parent 1e65159b34
commit c1924ab729
2 changed files with 8 additions and 1 deletions

View File

@ -673,8 +673,13 @@ def win32_ver(release='',version='',csd='',ptype=''):
release = '7'
else:
release = '2008ServerR2'
elif min == 2:
if product_type == VER_NT_WORKSTATION:
release = '8'
else:
release = '2012Server'
else:
release = 'post2008Server'
release = 'post2012Server'
else:
if not release:

View File

@ -119,6 +119,8 @@ Core and Builtins
Library
-------
- Issue #16176: Properly identify Windows 8 via platform.platform()
- Issue #15756: subprocess.poll() now properly handles errno.ECHILD to
return a returncode of 0 when the child has already exited or cannot
be waited on.