[Python-checkins] r69901 - python/trunk/Doc/library/abc.rst

georg.brandl python-checkins at python.org
Mon Feb 23 12:24:46 CET 2009


Author: georg.brandl
Date: Mon Feb 23 12:24:46 2009
New Revision: 69901

Log:
#5349: C++ pure virtuals can also have an implementation.


Modified:
   python/trunk/Doc/library/abc.rst

Modified: python/trunk/Doc/library/abc.rst
==============================================================================
--- python/trunk/Doc/library/abc.rst	(original)
+++ python/trunk/Doc/library/abc.rst	Mon Feb 23 12:24:46 2009
@@ -153,7 +153,7 @@
 
    .. 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


More information about the Python-checkins mailing list