This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gschizas
Recipients gschizas, steve.dower, tim.golden, zach.ware
Date 2015-02-09.06:03:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423461781.68.0.225997431705.issue23417@psf.upfronthosting.co.za>
In-reply-to
Content
Python on Windows can now can understand that it's on Windows 8.1 and Windows Server 2012 R2, but platform.py hasn't been updated, and claims it's on "post2012Server":

>>> import platform
>>> print(platform.win32_ver())
('post2012Server', '6.3.9600', '', 'Multiprocessor Free')

The function win32_ver (which most of the platform library relies upon) should be changed, to include Windows 8.1 and Windows Server 2012 R2. I've attached a patch file that does that
History
Date User Action Args
2015-02-09 06:03:01gschizassetrecipients: + gschizas, tim.golden, zach.ware, steve.dower
2015-02-09 06:03:01gschizassetmessageid: <1423461781.68.0.225997431705.issue23417@psf.upfronthosting.co.za>
2015-02-09 06:03:01gschizaslinkissue23417 messages
2015-02-09 06:03:01gschizascreate