diff options
author | ram vikram singh <ramvikrams243@gmail.com> | 2023-01-12 00:11:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 00:11:12 (GMT) |
commit | d9dff4c8b5ab41c47af002ad7fb083c953e75f31 (patch) | |
tree | 94b950a1819e5d54999fa52669515fdc0aecb9dd /Doc/library/sys.rst | |
parent | 02a72f080dc89b037c304a85a0f96509de9ae688 (diff) | |
download | cpython-d9dff4c8b5ab41c47af002ad7fb083c953e75f31.zip cpython-d9dff4c8b5ab41c47af002ad7fb083c953e75f31.tar.gz cpython-d9dff4c8b5ab41c47af002ad7fb083c953e75f31.tar.bz2 |
GH-100894: Updated the doc for `sys.winver` to clarify its usual contents (GH-100913)
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 428ce51..28adca1 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1843,7 +1843,7 @@ always available. The version number used to form registry keys on Windows platforms. This is stored as string resource 1000 in the Python DLL. The value is normally the - first three characters of :const:`version`. It is provided in the :mod:`sys` + major and minor versions of the running Python interpreter. It is provided in the :mod:`sys` module for informational purposes; modifying this value has no effect on the registry keys used by Python. |