mirror of
https://github.com/python/cpython.git
synced 2025-08-25 19:24:42 +00:00
#10549: fix interface of docclass() for text documenter.
This commit is contained in:
parent
34e9fc2e82
commit
9bd45f995f
2 changed files with 3 additions and 1 deletions
|
@ -1132,7 +1132,7 @@ doubt, consult the module reference at the location listed above.
|
|||
result = result + self.section('FILE', file)
|
||||
return result
|
||||
|
||||
def docclass(self, object, name=None, mod=None):
|
||||
def docclass(self, object, name=None, mod=None, *ignored):
|
||||
"""Produce text documentation for a given class object."""
|
||||
realname = object.__name__
|
||||
name = name or realname
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue