diff options
author | Tanner Firl <105078804+TannerFirl@users.noreply.github.com> | 2023-02-23 13:28:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 13:28:33 (GMT) |
commit | 9bba8035bd99813203cb3b0de218f9cc3bcdaf2f (patch) | |
tree | 7a05ec06f47b15e5136257bf805247a85bcede88 /Doc/c-api/init.rst | |
parent | 5b9573eed43c9a43bf0cf54fe012413e08cce34f (diff) | |
download | cpython-9bba8035bd99813203cb3b0de218f9cc3bcdaf2f.zip cpython-9bba8035bd99813203cb3b0de218f9cc3bcdaf2f.tar.gz cpython-9bba8035bd99813203cb3b0de218f9cc3bcdaf2f.tar.bz2 |
Fix typo in `Py_GetPythonHome` signature (#102168)
Diffstat (limited to 'Doc/c-api/init.rst')
-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 ad06616..b50ee3b 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -818,7 +818,7 @@ Process-wide parameters .. deprecated:: 3.11 -.. c:function:: w_char* Py_GetPythonHome() +.. c:function:: wchar_t* Py_GetPythonHome() Return the default "home", that is, the value set by a previous call to :c:func:`Py_SetPythonHome`, or the value of the :envvar:`PYTHONHOME` |