summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-02-20 12:15:26 (GMT)
committerGeorg Brandl <georg@python.org>2006-02-20 12:15:26 (GMT)
commit9c65202f49d0a10367b53c10cb1552b09d985d9c (patch)
tree938e1de657373b98601c215631c7459819548889 /Doc/lib
parentf07e42c159bd308b1c5691f211faa773be3bbc90 (diff)
downloadcpython-9c65202f49d0a10367b53c10cb1552b09d985d9c.zip
cpython-9c65202f49d0a10367b53c10cb1552b09d985d9c.tar.gz
cpython-9c65202f49d0a10367b53c10cb1552b09d985d9c.tar.bz2
Bug #1323369: document possible values of sys.getwindowsversion()
platform field
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libsys.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex
index 4efe5f6..4754107 100644
--- a/Doc/lib/libsys.tex
+++ b/Doc/lib/libsys.tex
@@ -271,10 +271,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;