diff options
author | Eric Smith <eric@trueblade.com> | 2010-02-03 14:17:50 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-02-03 14:17:50 (GMT) |
commit | b3c548845a5bcb81bb3a59c641b5491ded7ee557 (patch) | |
tree | 9741cda45b7aa0e215f930ec1432a83d1561361a | |
parent | f8f42075df0c8e369b87f7d1310b6ba08ceb0da4 (diff) | |
download | cpython-b3c548845a5bcb81bb3a59c641b5491ded7ee557.zip cpython-b3c548845a5bcb81bb3a59c641b5491ded7ee557.tar.gz cpython-b3c548845a5bcb81bb3a59c641b5491ded7ee557.tar.bz2 |
Corrected list of attributes exposed by sys.getwindowsversion.
-rw-r--r-- | Doc/whatsnew/2.7.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 20a4a46..077f902 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -830,10 +830,10 @@ changes, or look through the Subversion logs for all the details. Light; :issue:`4285`.) :func:`sys.getwindowsversion` also returns a named tuple, - with attributes named :attr:`service_pack_major`, - :attr:`service_pack_minor`, - :attr:`suite_mask`, and :attr:`product_type`. (Contributed by - Brian Curtin; :issue:`7766`.) + with attributes named :attr:`major`, :attr:`minor`, :attr:`build`, + :attr:`platform`:, :attr:`service_pack`, :attr:`service_pack_major`, + :attr:`service_pack_minor`, :attr:`suite_mask`, and + :attr:`product_type`. (Contributed by Brian Curtin; :issue:`7766`.) * The :mod:`tarfile` module's default error handling has changed, to no longer suppress fatal errors. The default error level was previously 0, |