From: Georg Brandl Date: Sat, 26 Jan 2008 09:39:23 +0000 (+0000) Subject: #1939: update code object docstring. X-Git-Tag: v3.0a3~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1e7e139666eb5325ca142a30ed03bee2c7d55b0;p=thirdparty%2FPython%2Fcpython.git #1939: update code object docstring. --- diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 80c2df90cbdb..9bb2ca6b9a5f 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -179,8 +179,9 @@ validate_and_copy_tuple(PyObject *tup) } PyDoc_STRVAR(code_doc, -"code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\ - varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\ +"code(argcount, kwonlyargcount nlocals, stacksize, flags, codestring,\n\ + constants, names, varnames, filename, name, firstlineno,\n\ + lnotab[, freevars[, cellvars]])\n\ \n\ Create a code object. Not for the faint of heart.");