bpo-43698: do not use ... as argument name in docs (GH-30502)

This commit is contained in:
Nikita Sobolev 2022-01-26 13:06:10 +03:00 committed by GitHub
parent 84f093918a
commit b9d8980d89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 19 deletions

View file

@ -248,7 +248,7 @@ are always available. They are listed here in alphabetical order.
class C:
@classmethod
def f(cls, arg1, arg2, ...): ...
def f(cls, arg1, arg2): ...
The ``@classmethod`` form is a function :term:`decorator` -- see
:ref:`function` for details.