Fix the miscellaneous typo (GH-17700)

A character "i" is omitted.
This commit is contained in:
cocoatomo 2019-12-26 00:39:35 +09:00 committed by Miss Islington (bot)
parent dd117c33a8
commit 527f9de6ef
1 changed files with 1 additions and 1 deletions

View File

@ -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