diff options
author | Georg Brandl <georg@python.org> | 2006-02-20 12:15:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-20 12:15:23 (GMT) |
commit | 71322121d73898ad221132e55aa4511a3b1e407b (patch) | |
tree | dbe48daffa21166eeaa9e270a91dd09274585fe0 | |
parent | e46af8c367c5fb17be0391a07a534ba5007133e5 (diff) | |
download | cpython-71322121d73898ad221132e55aa4511a3b1e407b.zip cpython-71322121d73898ad221132e55aa4511a3b1e407b.tar.gz cpython-71322121d73898ad221132e55aa4511a3b1e407b.tar.bz2 |
Bug #1323369: document possible values of sys.getwindowsversion()
platform field
-rw-r--r-- | Doc/lib/libsys.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index e8a6ccd..ea8950a 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -287,10 +287,10 @@ It is always available. \var{platform} may be one of the following values: \begin{tableii}{l|l}{constant}{Constant}{Platform} - \lineii{VER_PLATFORM_WIN32s} {Win32s on Windows 3.1} - \lineii{VER_PLATFORM_WIN32_WINDOWS}{Windows 95/98/ME} - \lineii{VER_PLATFORM_WIN32_NT} {Windows NT/2000/XP} - \lineii{VER_PLATFORM_WIN32_CE} {Windows CE} + \lineii{0 (VER_PLATFORM_WIN32s)} {Win32s on Windows 3.1} + \lineii{1 (VER_PLATFORM_WIN32_WINDOWS)}{Windows 95/98/ME} + \lineii{2 (VER_PLATFORM_WIN32_NT)} {Windows NT/2000/XP} + \lineii{3 (VER_PLATFORM_WIN32_CE)} {Windows CE} \end{tableii} This function wraps the Win32 \cfunction{GetVersionEx()} function; |