diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-06-03 05:07:47 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-06-03 05:07:47 (GMT) |
commit | 0813168e942a81c03727ef4785dceb642b959f20 (patch) | |
tree | 848d9ccbdea7f9f474b23319255973195c7d0021 /Doc/c-api/code.rst | |
parent | 11cfea92950eda064e9b5b7048c1951bb084fc43 (diff) | |
download | cpython-0813168e942a81c03727ef4785dceb642b959f20.zip cpython-0813168e942a81c03727ef4785dceb642b959f20.tar.gz cpython-0813168e942a81c03727ef4785dceb642b959f20.tar.bz2 |
Issue #14090: fix some minor C API problems in default branch (3.3)
Diffstat (limited to 'Doc/c-api/code.rst')
-rw-r--r-- | Doc/c-api/code.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 6932bb1..57e8072 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -31,11 +31,11 @@ bound into a function. Return true if *co* is a :class:`code` object -.. c:function:: int PyCode_GetNumFree(PyObject *co) +.. c:function:: int PyCode_GetNumFree(PyCodeObject *co) Return the number of free variables in *co*. -.. c:function:: PyCodeObject *PyCode_New(int argcount, 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) +.. c:function:: PyCodeObject* PyCode_New(int argcount, 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) Return a new code object. If you need a dummy code object to create a frame, use :c:func:`PyCode_NewEmpty` instead. Calling @@ -43,7 +43,7 @@ bound into a function. version since the definition of the bytecode changes often. -.. c:function:: int PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) +.. c:function:: PyCodeObject* PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) Return a new empty code object with the specified filename, function name, and first line number. It is illegal to |