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 Scott.Leerssen
Recipients Florian Roth, James Domingo, Scott.Leerssen, arhoyling, paul.moore, python-dev, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2016-10-13.13:51:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476366717.66.0.391671143277.issue26513@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like there may still be an issue in Python 2.7.12 on Windows 2008 R2 (Datacenter Edition).  On an Amazon instance (tried t2.micro and m4.large) we are seeing the following:

In 2.7.11 (correct)
C:\Users\Administrator>python
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec  5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> import platform
>>> platform.win32_ver()
('2008ServerR2', '6.1.7601', 'SP1', u'Multiprocessor Free')
>>>

In 2.7.12 (incorrect)
C:\Users\Administrator>python
Python 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:24:40) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.win32_ver()
('7', '6.1.7601', 'SP1', u'Multiprocessor Free')
>>>
History
Date User Action Args
2016-10-13 13:51:57Scott.Leerssensetrecipients: + Scott.Leerssen, paul.moore, tim.golden, python-dev, zach.ware, serhiy.storchaka, steve.dower, Florian Roth, James Domingo, arhoyling
2016-10-13 13:51:57Scott.Leerssensetmessageid: <1476366717.66.0.391671143277.issue26513@psf.upfronthosting.co.za>
2016-10-13 13:51:57Scott.Leerssenlinkissue26513 messages
2016-10-13 13:51:57Scott.Leerssencreate