https://github.com/python/cpython/commit/65877862704ef86b92262a88972ebc4982acc669 commit: 65877862704ef86b92262a88972ebc4982acc669 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2025-08-21T12:40:15-04:00 summary:
[3.13] gh-138011: Clarify tutorial method object example code (GH-138014) (#138026) x must be a MyClass instance for examples to work. --------- (cherry picked from commit 339f5da6395868073e22157424405b89cafb5c6d) Co-authored-by: Terry Jan Reedy <[email protected]> files: M Doc/tutorial/classes.rst diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 492568961d8a51..c4480e90b7243c 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -359,7 +359,7 @@ Usually, a method is called right after it is bound:: x.f() -In the :class:`!MyClass` example, this will return the string ``'hello world'``. +If ``x = MyClass()``, as above, this will return the string ``'hello world'``. However, it is not necessary to call a method right away: ``x.f`` is a method object, and can be stored away and called at a later time. For example:: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
