We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c48e0ef commit f61de0dCopy full SHA for f61de0d
Doc/library/functions.rst
@@ -1723,8 +1723,9 @@ are always available. They are listed here in alphabetical order.
1723
:ref:`function` for details.
1724
1725
A static method can be called either on the class (such as ``C.f()``) or on
1726
- an instance (such as ``C().f()``). Moreover, they can be called as regular
1727
- functions (such as ``f()``).
+ an instance (such as ``C().f()``).
+ Moreover, the static method :term:`descriptor` is also callable, so it can
1728
+ be used in the class definition (such as ``f()``).
1729
1730
Static methods in Python are similar to those found in Java or C++. Also, see
1731
:func:`classmethod` for a variant that is useful for creating alternate class
0 commit comments