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 arhoyling
Recipients Florian Roth, James Domingo, arhoyling, paul.moore, python-dev, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2016-09-21.10:04:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474452259.3.0.728877950369.issue26513@psf.upfronthosting.co.za>
In-reply-to
Content
In fact, at the tip of the 2.7 branch in `sysmodule.c` we have:

static PyStructSequence_Field windows_version_fields[] = {
    {"major", "Major version number"},
    {"minor", "Minor version number"},
    {"build", "Build number"},
    {"platform", "Operating system platform"},
    {"service_pack", "Latest Service Pack installed on the system"},
    {"service_pack_major", "Service Pack major version number"},
    {"service_pack_minor", "Service Pack minor version number"},
    {"suite_mask", "Bit mask identifying available product suites"},
    {"product_type", "System product type"},
    {0}
};

https://hg.python.org/cpython/file/2.7/Python/sysmodule.c
History
Date User Action Args
2016-09-21 10:04:19arhoylingsetrecipients: + arhoyling, paul.moore, tim.golden, python-dev, zach.ware, serhiy.storchaka, steve.dower, Florian Roth, James Domingo
2016-09-21 10:04:19arhoylingsetmessageid: <1474452259.3.0.728877950369.issue26513@psf.upfronthosting.co.za>
2016-09-21 10:04:19arhoylinglinkissue26513 messages
2016-09-21 10:04:18arhoylingcreate