diff options
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r-- | Doc/library/abc.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 31bd896..29d37f3 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -132,7 +132,7 @@ It also provides the following decorators: A class that has a metaclass derived from :class:`ABCMeta` cannot be instantiated unless all of its abstract methods and properties are overridden. - The abstract methods can be called using any of the the normal 'super' call + The abstract methods can be called using any of the normal 'super' call mechanisms. Dynamically adding abstract methods to a class, or attempting to modify the @@ -184,6 +184,7 @@ It also provides the following decorators: def setx(self, value): ... x = abstractproperty(getx, setx) + .. rubric:: Footnotes .. [#] C++ programmers should note that Python's virtual base class |