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 | bab7850c8edf8a030a76cd1615aee914bafbbc5a (patch) | |
tree | 0f0d750aa70e1052c00192cdea52ec6be29ae30a /Doc/library/platform.rst | |
parent | 09289afbd4b75426cd8569bf1a8eb90b7e613acb (diff) | |
download | cpython-bab7850c8edf8a030a76cd1615aee914bafbbc5a.zip cpython-bab7850c8edf8a030a76cd1615aee914bafbbc5a.tar.gz cpython-bab7850c8edf8a030a76cd1615aee914bafbbc5a.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 26f587e..cb7144a 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -197,8 +197,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 |