[Python-checkins] cpython (2.7): Fix: win32_ver returns a 4-tuple. Found by Andrew Berg on docs at .

georg.brandl python-checkins at python.org
Sun Oct 6 19:18:42 CEST 2013


http://hg.python.org/cpython/rev/93595ab19262
changeset:   86120:93595ab19262
branch:      2.7
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 19:19:18 2013 +0200
summary:
  Fix: win32_ver returns a 4-tuple. Found by Andrew Berg on docs at .

files:
  Doc/library/platform.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst
--- a/Doc/library/platform.rst
+++ b/Doc/library/platform.rst
@@ -197,8 +197,8 @@
 .. function:: win32_ver(release='', version='', csd='', ptype='')
 
    Get additional version information from the Windows Registry and return a tuple
-   ``(version, csd, ptype)`` referring to version number, CSD level
-   (service pack) and OS type (multi/single processor).
+   ``(release, version, csd, ptype)`` referring to OS release, version number,
+   CSD level (service pack) and OS type (multi/single processor).
 
    As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT machines
    and ``'Multiprocessor Free'`` on multi processor machines. The *'Free'* refers

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list