diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2008-04-21 20:15:39 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2008-04-21 20:15:39 (GMT) |
commit | aa3cadb01e47719b9f8b7401cdbd32791b5e16f7 (patch) | |
tree | 86ae5a9701839235dedc412fb4c7caee9c31b963 | |
parent | fa1814e1b61806fc38e166a587d8f327e2d2a9c6 (diff) | |
download | cpython-aa3cadb01e47719b9f8b7401cdbd32791b5e16f7.zip cpython-aa3cadb01e47719b9f8b7401cdbd32791b5e16f7.tar.gz cpython-aa3cadb01e47719b9f8b7401cdbd32791b5e16f7.tar.bz2 |
Windows x64 also falls under VER_PLATFORM_WIN32_NT.
-rw-r--r-- | Doc/library/sys.rst | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 96bbe14..4f6416f 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -456,17 +456,17 @@ always available. *platform* may be one of the following values: - +-----------------------------------------+-----------------------+ - | Constant | Platform | - +=========================================+=======================+ - | :const:`0 (VER_PLATFORM_WIN32s)` | Win32s on Windows 3.1 | - +-----------------------------------------+-----------------------+ - | :const:`1 (VER_PLATFORM_WIN32_WINDOWS)` | Windows 95/98/ME | - +-----------------------------------------+-----------------------+ - | :const:`2 (VER_PLATFORM_WIN32_NT)` | Windows NT/2000/XP | - +-----------------------------------------+-----------------------+ - | :const:`3 (VER_PLATFORM_WIN32_CE)` | Windows CE | - +-----------------------------------------+-----------------------+ + +-----------------------------------------+-------------------------+ + | Constant | Platform | + +=========================================+=========================+ + | :const:`0 (VER_PLATFORM_WIN32s)` | Win32s on Windows 3.1 | + +-----------------------------------------+-------------------------+ + | :const:`1 (VER_PLATFORM_WIN32_WINDOWS)` | Windows 95/98/ME | + +-----------------------------------------+-------------------------+ + | :const:`2 (VER_PLATFORM_WIN32_NT)` | Windows NT/2000/XP/x64 | + +-----------------------------------------+-------------------------+ + | :const:`3 (VER_PLATFORM_WIN32_CE)` | Windows CE | + +-----------------------------------------+-------------------------+ This function wraps the Win32 :cfunc:`GetVersionEx` function; see the Microsoft documentation for more information about these fields. |