From ad658df64ae8bda40c5742fd2e2c2ff77227620b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Sat, 8 Aug 2020 15:57:24 -0300 Subject: [PATCH 1/2] Fix typo in super() --- Doc/library/functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 43c47c1da9434c..08296522dd3f31 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1644,7 +1644,7 @@ are always available. They are listed here in alphabetical order. not found in statically compiled languages or languages that only support single inheritance. This makes it possible to implement "diamond diagrams" where multiple base classes implement the same method. Good design dictates - that this method have the same calling signature in every case (because the + that such implementations have the same calling signature in every case (because the order of calls is determined at runtime, because that order adapts to changes in the class hierarchy, and because that order can include sibling classes that are unknown prior to runtime). From 4bc3d1b95d91a5914880839824f929f31994c116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Mon, 12 Oct 2020 13:51:34 -0300 Subject: [PATCH 2/2] Fix Travis build