From: Nice Zombies Date: Sat, 1 Jun 2024 21:20:00 +0000 (+0200) Subject: gh-119016: Remove outdated sentences from the "classes" tutorial (#119130) X-Git-Tag: v3.14.0a1~1656 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c618f7d80e78f83cc24b6bdead33ca38cbd4d27f;p=thirdparty%2FPython%2Fcpython.git gh-119016: Remove outdated sentences from the "classes" tutorial (#119130) Co-authored-by: Alex Waygood --- diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 7ab528acb370..1b64741c349e 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -338,11 +338,7 @@ code will print the value ``16``, without leaving a trace:: del x.counter The other kind of instance attribute reference is a *method*. A method is a -function that "belongs to" an object. (In Python, the term method is not unique -to class instances: other object types can have methods as well. For example, -list objects have methods called append, insert, remove, sort, and so on. -However, in the following discussion, we'll use the term method exclusively to -mean methods of class instance objects, unless explicitly stated otherwise.) +function that "belongs to" an object. .. index:: pair: object; method