diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-12 00:20:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 00:20:24 (GMT) |
commit | e44120a286f64cd8534418fd22af7a36e89d0548 (patch) | |
tree | 6a7bd69b9488fda631d63650352c202384d0a981 | |
parent | a3b65770a0c048c3feaf9c289deba9a8f0e34f72 (diff) | |
download | cpython-e44120a286f64cd8534418fd22af7a36e89d0548.zip cpython-e44120a286f64cd8534418fd22af7a36e89d0548.tar.gz cpython-e44120a286f64cd8534418fd22af7a36e89d0548.tar.bz2 |
GH-100894: Updated the doc for `sys.winver` to clarify its usual contents (GH-100913)
(cherry picked from commit d9dff4c8b5ab41c47af002ad7fb083c953e75f31)
Co-authored-by: ram vikram singh <ramvikrams243@gmail.com>
-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 8785278..c465842 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1750,7 +1750,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. |