diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-04-11 13:50:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 13:50:25 (GMT) |
commit | 50b4b1598411ed393f47ce7f4fffbe5b9063cd42 (patch) | |
tree | c30a5e53040a4dfe321e09af0a7a5ce932c3e8cf /Lib/abc.py | |
parent | 55c99d97e14618dfce41472dd4446f763b0da13f (diff) | |
download | cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.zip cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.tar.gz cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.tar.bz2 |
gh-87864: Use correct function definition syntax in the docs (#103312)
Diffstat (limited to 'Lib/abc.py')
-rw-r--r-- | Lib/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ def abstractmethod(funcobj): class C(metaclass=ABCMeta): @abstractmethod - def my_abstract_method(self, ...): + def my_abstract_method(self, arg1, arg2, argN): ... """ funcobj.__isabstractmethod__ = True |