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 giampaolo.rodola
Recipients giampaolo.rodola
Date 2013-12-27.17:45:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388166342.38.0.63182866145.issue20081@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows 7:

>>> v = sys.getwindowsversion()
>>> v
sys.getwindowsversion(major=6, minor=1, build=7600, platform=2, service_pack='')
>>> v.service_pack_major
0
>>> v.service_pack_minor
0
>>> v.suite_mask
254

Doc states:

> For compatibility with prior versions, only the first 5 elements are retrievable by indexing.

...so I guess that's why service_pack_minor, service_pack_major and suite_mask fields are not shown.
Nevertheless I think this is a inconvenience which should be fixed, at least in the next major Python version.
History
Date User Action Args
2013-12-27 17:45:42giampaolo.rodolasetrecipients: + giampaolo.rodola
2013-12-27 17:45:42giampaolo.rodolasetmessageid: <1388166342.38.0.63182866145.issue20081@psf.upfronthosting.co.za>
2013-12-27 17:45:42giampaolo.rodolalinkissue20081 messages
2013-12-27 17:45:41giampaolo.rodolacreate