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.

Author mark.dickinson
Recipients docs@python, mark.dickinson
Date 2010-06-29.16:52:38
SpamBayes Score 0.0019063202
Marked as misclassified No
Message-id <1277830360.72.0.109155081636.issue9117@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at:

http://docs.python.org/dev/py3k/reference/compound_stmts.html#class-definitions

I see:

classdef    ::=  [decorators] "class" classname [inheritance] ":" suite
inheritance ::=  "(" [expression_list] ")"
classname   ::=  identifier

this seems to be missing the keyword arguments that are now possible in a classdef (e.g. for specifying a metaclass).  I believe that *args and **kwargs are now also syntactically accepted in a class definition.
History
Date User Action Args
2010-06-29 16:52:40mark.dickinsonsetrecipients: + mark.dickinson, docs@python
2010-06-29 16:52:40mark.dickinsonsetmessageid: <1277830360.72.0.109155081636.issue9117@psf.upfronthosting.co.za>
2010-06-29 16:52:39mark.dickinsonlinkissue9117 messages
2010-06-29 16:52:38mark.dickinsoncreate