[Python-checkins] r77944 - python/trunk/Doc/whatsnew/2.7.rst

eric.smith python-checkins at python.org
Wed Feb 3 15:17:51 CET 2010


Author: eric.smith
Date: Wed Feb  3 15:17:50 2010
New Revision: 77944

Log:
Corrected list of attributes exposed by sys.getwindowsversion.

Modified:
   python/trunk/Doc/whatsnew/2.7.rst

Modified: python/trunk/Doc/whatsnew/2.7.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.7.rst	(original)
+++ python/trunk/Doc/whatsnew/2.7.rst	Wed Feb  3 15:17:50 2010
@@ -830,10 +830,10 @@
   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,


More information about the Python-checkins mailing list