diff options
author | Victor Stinner <vstinner@python.org> | 2022-05-02 13:29:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 13:29:22 (GMT) |
commit | 6811bdef63d4f3af6ff901d324556cf8954575a7 (patch) | |
tree | 340c41cd3d1c008c65c4e4a62fab00989a982635 | |
parent | 79886e7b62f4879a4cb17526a9a809bd0f5ed5e3 (diff) | |
download | cpython-6811bdef63d4f3af6ff901d324556cf8954575a7.zip cpython-6811bdef63d4f3af6ff901d324556cf8954575a7.tar.gz cpython-6811bdef63d4f3af6ff901d324556cf8954575a7.tar.bz2 |
gh-88097: doc: fix link to Py_Version (#92141)
-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 9d38fb4..d9a7d8e 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -553,7 +553,7 @@ Process-wide parameters 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`. - See also the :data:`Py_Version` constant. + See also the :c:var:`Py_Version` constant. .. c:function:: const char* Py_GetPlatform() |