summaryrefslogtreecommitdiff
path: root/Doc/library/platform.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 19:19:18 +0200
committerGeorg Brandl <georg@python.org>2013-10-06 19:19:18 +0200
commitd13266ace0d629bd415700ade6850568a02e75d5 (patch)
tree84ea398095afd53e6f863f898765e0224109c6a8 /Doc/library/platform.rst
parenta37919c41807d05164de65fbd79f72818f56d056 (diff)
downloadcpython-d13266ace0d629bd415700ade6850568a02e75d5.tar.gz
Fix: win32_ver returns a 4-tuple. Found by Andrew Berg on docs@.
Diffstat (limited to 'Doc/library/platform.rst')
-rw-r--r--Doc/library/platform.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst
index a6a98f1698..e27f2ad8b0 100644
--- a/Doc/library/platform.rst
+++ b/Doc/library/platform.rst
@@ -194,8 +194,8 @@ Windows Platform
.. 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