[Python-checkins] Docs: Remove stray semicolon in init.rst (GH-23974)

miss-islington webhook-mailer at python.org
Thu Jan 14 11:17:54 EST 2021


https://github.com/python/cpython/commit/ddc0fa3a1c1da32359f2019d14cbcfc8eb73498b
commit: ddc0fa3a1c1da32359f2019d14cbcfc8eb73498b
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-01-14T08:17:44-08:00
summary:

Docs: Remove stray semicolon in init.rst (GH-23974)


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.htmlGH-c._PyInterpreterState_GetEvalFrameFunc)).
(cherry picked from commit 971235827754eee6c0d9f7d39b52fecdfd4cb7b4)

Co-authored-by: Ken Jin <28750310+Fidget-Spinner at users.noreply.github.com>

files:
M Doc/c-api/init.rst

diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 7f06648bcb457..eb0bd14587145 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -1155,7 +1155,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.
 



More information about the Python-checkins mailing list