summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-23 11:24:46 (GMT)
committerGeorg Brandl <georg@python.org>2009-02-23 11:24:46 (GMT)
commit89d4f0d7c5a418cbb12312c1f2ccd84bd34e1ab2 (patch)
tree4de044af832c7106d5749c12391b938df48c273e
parent528f8810aa495d2efc50af7ceb28d2c7092ea92e (diff)
downloadcpython-89d4f0d7c5a418cbb12312c1f2ccd84bd34e1ab2.zip
cpython-89d4f0d7c5a418cbb12312c1f2ccd84bd34e1ab2.tar.gz
cpython-89d4f0d7c5a418cbb12312c1f2ccd84bd34e1ab2.tar.bz2
#5349: C++ pure virtuals can also have an implementation.
-rw-r--r--Doc/library/abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 8014aed..9461aa5 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