[Python-checkins] cpython (merge 3.2 -> default): Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API

meador.inge python-checkins at python.org
Fri Jan 20 05:28:47 CET 2012


http://hg.python.org/cpython/rev/218b167ff521
changeset:   74536:218b167ff521
parent:      74534:8502a9236c2e
parent:      74535:b22a35c14a91
user:        Meador Inge <meadori at gmail.com>
date:        Thu Jan 19 22:24:55 2012 -0600
summary:
  Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API function.

files:
  Doc/c-api/code.rst |  2 +-
  Misc/NEWS          |  3 +++
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst
--- a/Doc/c-api/code.rst
+++ b/Doc/c-api/code.rst
@@ -35,7 +35,7 @@
 
    Return the number of free variables in *co*.
 
-.. c:function:: PyCodeObject *PyCode_New(int argcount, 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
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2100,6 +2100,9 @@
 Documentation
 -------------
 
+- Issue #12949: Document the kwonlyargcount argument for the PyCode_New
+  C API function.
+
 - Issue #13513: Fix io.IOBase documentation to correctly link to the
   io.IOBase.readline method instead of the readline module.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list