From: Benjamin Peterson Date: Tue, 17 May 2016 06:20:22 +0000 (-0700) Subject: class definitions only get argument lists (closes #27042) X-Git-Tag: v3.5.2rc1~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54044d605fee2867bbfe18610fc0b8120a4ff239;p=thirdparty%2FPython%2Fcpython.git class definitions only get argument lists (closes #27042) --- diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index d45a880ca4b8..8047673e190f 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -604,7 +604,7 @@ A class definition defines a class object (see section :ref:`types`): .. productionlist:: classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite` - inheritance: "(" [`parameter_list`] ")" + inheritance: "(" [`argument_list`] ")" classname: `identifier` A class definition is an executable statement. The inheritance list usually