diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 17:19:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 17:19:18 (GMT) |
commit | 6647a719bc96223f402c07d32d16cbd0b48046bd (patch) | |
tree | 0620b38f423917ca3fbbbfccbd90b2bbc1189cd0 /Doc/library/platform.rst | |
parent | f6d6347fc0c1e636e5d96ce760806e6572176b47 (diff) | |
download | cpython-6647a719bc96223f402c07d32d16cbd0b48046bd.zip cpython-6647a719bc96223f402c07d32d16cbd0b48046bd.tar.gz cpython-6647a719bc96223f402c07d32d16cbd0b48046bd.tar.bz2 |
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.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index a6a98f1..e27f2ad 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 |