diff options
author | cocoatomo <cocoatomo77@gmail.com> | 2019-12-25 15:39:35 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-12-25 15:39:35 (GMT) |
commit | 527f9de6efdcf09983d0764be0b978ddc1fd1653 (patch) | |
tree | a99fc871329adced381f98e9d1ceda0458a3700f /Doc/c-api/code.rst | |
parent | dd117c33a83ae0a7532848d3e0b8d96b098c9c46 (diff) | |
download | cpython-527f9de6efdcf09983d0764be0b978ddc1fd1653.zip cpython-527f9de6efdcf09983d0764be0b978ddc1fd1653.tar.gz cpython-527f9de6efdcf09983d0764be0b978ddc1fd1653.tar.bz2 |
Fix the miscellaneous typo (GH-17700)
A character "i" is omitted.
Diffstat (limited to 'Doc/c-api/code.rst')
-rw-r--r-- | Doc/c-api/code.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 45a6b4a..6f8c41c 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -42,7 +42,7 @@ bound into a function. .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab) - Similar to :c:func:`PyCode_New`, but with an extra "posonlyargcount" for positonal-only arguments. + Similar to :c:func:`PyCode_New`, but with an extra "posonlyargcount" for positional-only arguments. .. versionadded:: 3.8 |