]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43427: Separte the method overview from the static method specifics. (GH-24787)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Sat, 13 Mar 2021 21:46:32 +0000 (13:46 -0800)
committerGitHub <noreply@github.com>
Sat, 13 Mar 2021 21:46:32 +0000 (13:46 -0800)
Doc/howto/descriptor.rst

index 94a8b4e6b40b9628360d9acaf0d6742f40aade91..94aadd6f73a837278b846103fb36e23804285d7b 100644 (file)
@@ -1139,8 +1139,8 @@ If you have ever wondered where *self* comes from in regular methods or where
 *cls* comes from in class methods, this is it!
 
 
-Static methods
---------------
+Other kinds of methods
+----------------------
 
 Non-data descriptors provide a simple mechanism for variations on the usual
 patterns of binding functions into methods.
@@ -1163,6 +1163,10 @@ This chart summarizes the binding and its two most useful variants:
       | classmethod     | f(type(obj), \*args) | f(cls, \*args)   |
       +-----------------+----------------------+------------------+
 
+
+Static methods
+--------------
+
 Static methods return the underlying function without changes.  Calling either
 ``c.f`` or ``C.f`` is the equivalent of a direct lookup into
 ``object.__getattribute__(c, "f")`` or ``object.__getattribute__(C, "f")``. As a