summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>2021-01-14 15:57:08 (GMT)
committerGitHub <noreply@github.com>2021-01-14 15:57:08 (GMT)
commit971235827754eee6c0d9f7d39b52fecdfd4cb7b4 (patch)
treed33985adeb8aeeab63342818663e76dbc67fc719 /Doc
parent14cfa325c298ceb9eaf6b585a3cdcabf6c6378a9 (diff)
downloadcpython-971235827754eee6c0d9f7d39b52fecdfd4cb7b4.zip
cpython-971235827754eee6c0d9f7d39b52fecdfd4cb7b4.tar.gz
cpython-971235827754eee6c0d9f7d39b52fecdfd4cb7b4.tar.bz2
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.html#c._PyInterpreterState_GetEvalFrameFunc)).
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/init.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 5736b83..0f75973 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -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.