From 73584a2e276cd52214f73443eda689c773973691 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Fri, 25 Aug 2023 04:52:13 +0100 Subject: Clarify "Method Resolution Order" (#4687) --- python.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python.html.markdown b/python.html.markdown index d9eda60c..d9261ff2 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -876,7 +876,8 @@ if __name__ == '__main__': if type(sup) is Superhero: print('I am a superhero') - # Get the Method Resolution search Order used by both getattr() and super() + # Get the "Method Resolution Order" used by both getattr() and super() + # (the order in which classes are searched for an attribute or method) # This attribute is dynamic and can be updated print(Superhero.__mro__) # => (, # => , ) @@ -958,8 +959,7 @@ class Batman(Superhero, Bat): if __name__ == '__main__': sup = Batman() - # Get the Method Resolution search Order used by both getattr() and super(). - # This attribute is dynamic and can be updated + # The Method Resolution Order print(Batman.__mro__) # => (, # => , # => , -- cgit v1.2.3