[3.11] Fix the confusing "User-defined methods" reference in the datamodel (GH-114276) (#114366)

This commit is contained in:
Miss Islington (bot) 2024-01-21 04:52:30 +01:00 committed by GitHub
parent 4913dc2090
commit 3681effafb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1507,7 +1507,7 @@ Class method objects
A class method object, like a static method object, is a wrapper around another
object that alters the way in which that object is retrieved from classes and
class instances. The behaviour of class method objects upon such retrieval is
described above, under "User-defined methods". Class method objects are created
described above, under :ref:`"instance methods" <instance-methods>`. Class method objects are created
by the built-in :func:`classmethod` constructor.