]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Remove stray semicolon in init.rst (GH-23974)
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Thu, 14 Jan 2021 15:57:08 +0000 (23:57 +0800)
committerGitHub <noreply@github.com>
Thu, 14 Jan 2021 15:57:08 +0000 (07:57 -0800)
Removed stray semicolon which was causing the docs to render weirdly (it's the function right under the one [here](https://docs.python.org/3/c-api/init.html#c._PyInterpreterState_GetEvalFrameFunc)).

Doc/c-api/init.rst

index 5736b83f211fb037c91aa21b621ffa105e344958..0f759732b35ea84587b5d96b4cb7da441b5c66fa 100644 (file)
@@ -1192,7 +1192,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
 
    .. versionadded:: 3.9
 
-.. c:function:: void _PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction eval_frame);
+.. c:function:: void _PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction eval_frame)
 
    Set the frame evaluation function.