From: Georg Brandl Date: Mon, 23 Feb 2009 11:24:46 +0000 (+0000) Subject: #5349: C++ pure virtuals can also have an implementation. X-Git-Tag: v2.7a1~1961 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89d4f0d7c5a418cbb12312c1f2ccd84bd34e1ab2;p=python #5349: C++ pure virtuals can also have an implementation. --- diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 8014aedd56..9461aa5dc2 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -153,7 +153,7 @@ It also provides the following decorators: .. note:: - Unlike C++'s pure virtual functions, or Java abstract methods, these abstract + Unlike Java abstract methods, these abstract methods may have an implementation. This implementation can be called via the :func:`super` mechanism from the class that overrides it. This could be useful as an end-point for a