diff options
author | Robert Howlett <robert@howletts.org.uk> | 2022-05-05 09:33:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 09:33:35 (GMT) |
commit | 43b135f94ebf3e6e84ddb0f75ed8510b96a610e4 (patch) | |
tree | 97e3370396acc56aa2115ce9320f28fd584c16f6 | |
parent | 08b562a5dfc5cb5b94c94622763f79998aa682c3 (diff) | |
download | cpython-43b135f94ebf3e6e84ddb0f75ed8510b96a610e4.zip cpython-43b135f94ebf3e6e84ddb0f75ed8510b96a610e4.tar.gz cpython-43b135f94ebf3e6e84ddb0f75ed8510b96a610e4.tar.bz2 |
gh-92047: Py_GetVersion multi-digit minor version (GH-92047) (#92048)
-rw-r--r-- | Doc/c-api/init.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index d9a7d8e..c17379c 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -549,7 +549,7 @@ Process-wide parameters .. index:: single: version (in module sys) The first word (up to the first space character) is the current Python version; - the first three characters are the major and minor version separated by a + the first characters are the major and minor version separated by a period. The returned string points into static storage; the caller should not modify its value. The value is available to Python code as :data:`sys.version`. |