[Python-checkins] r42516 - python/trunk/Doc/lib/libsys.tex

georg.brandl python-checkins at python.org
Mon Feb 20 13:15:23 CET 2006


Author: georg.brandl
Date: Mon Feb 20 13:15:23 2006
New Revision: 42516

Modified:
   python/trunk/Doc/lib/libsys.tex
Log:
Bug #1323369: document possible values of sys.getwindowsversion()
platform field


Modified: python/trunk/Doc/lib/libsys.tex
==============================================================================
--- python/trunk/Doc/lib/libsys.tex	(original)
+++ python/trunk/Doc/lib/libsys.tex	Mon Feb 20 13:15:23 2006
@@ -287,10 +287,10 @@
   \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;


More information about the Python-checkins mailing list