This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: documentation error: missing comma between kwonlyargcount & nlocals
Type: behavior Stage: needs patch
Components: Documentation Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: ezio.melotti, georg.brandl, kaizhu
Priority: low Keywords:

Created on 2009-07-17 11:27 by kaizhu, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg90619 - (view) Author: kai zhu (kaizhu) Date: 2009-07-17 11:26
missing comma between kwonlyargcount & nlocals

class code(object)
 |  code(argcount, kwonlyargcount nlocals, stacksize, flags, codestring,
 |        constants, names, varnames, filename, name, firstlineno,
 |        lnotab[, freevars[, cellvars]])
msg90621 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2009-07-17 11:55
Thanks for the report.
This was introduced in r60313 (see also #1939).
msg90662 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-07-18 09:08
Thanks, fixed in r74076.
History
Date User Action Args
2022-04-11 14:56:51adminsetgithub: 50751
2009-07-18 09:08:00georg.brandlsetstatus: open -> closed
resolution: accepted -> fixed
messages: + msg90662
2009-07-17 11:55:58ezio.melottisetpriority: low

assignee: georg.brandl -> ezio.melotti

nosy: + ezio.melotti
messages: + msg90621
resolution: accepted
stage: needs patch
2009-07-17 11:27:01kaizhucreate