[Python-checkins] r74076 - python/branches/py3k/Objects/codeobject.c

georg.brandl python-checkins at python.org
Sat Jul 18 11:07:49 CEST 2009


Author: georg.brandl
Date: Sat Jul 18 11:07:48 2009
New Revision: 74076

Log:
#6502: add missing comma in docstring.

Modified:
   python/branches/py3k/Objects/codeobject.c

Modified: python/branches/py3k/Objects/codeobject.c
==============================================================================
--- python/branches/py3k/Objects/codeobject.c	(original)
+++ python/branches/py3k/Objects/codeobject.c	Sat Jul 18 11:07:48 2009
@@ -179,7 +179,7 @@
 }
 
 PyDoc_STRVAR(code_doc,
-"code(argcount, kwonlyargcount nlocals, stacksize, flags, codestring,\n\
+"code(argcount, kwonlyargcount, nlocals, stacksize, flags, codestring,\n\
       constants, names, varnames, filename, name, firstlineno,\n\
       lnotab[, freevars[, cellvars]])\n\
 \n\


More information about the Python-checkins mailing list