From 448c51b6fa10fc7523eb465df71169df5207cc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 20 Mar 2019 21:04:12 +0100 Subject: [PATCH] Multiple inheritance --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57c5814..4c1c679 100644 --- a/README.md +++ b/README.md @@ -818,7 +818,6 @@ class Employee(Person): >>> Employee.mro() [, , ] ``` -* **MRO or Method Resolution Order determines the order in which parent classes are traversed when searching for a method.** ### Multiple Inheritance ```python @@ -827,6 +826,7 @@ class B: pass class C(A, B): pass ``` +**MRO or Method Resolution Order determines the order in which parent classes are traversed when searching for a method:** ```python >>> C.mro() [, , , ]