summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-10-11 06:23:55 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-10-11 06:23:55 (GMT)
commitd2a19c2c6764a77fbcd493fdc616e2a2d4940e9b (patch)
tree7c69dd5875aee775251d820bf5d36434323ac84a /Doc
parent5f32b236f1f048b4a03dc677466cbdb15e1843de (diff)
downloadcpython-d2a19c2c6764a77fbcd493fdc616e2a2d4940e9b.zip
cpython-d2a19c2c6764a77fbcd493fdc616e2a2d4940e9b.tar.gz
cpython-d2a19c2c6764a77fbcd493fdc616e2a2d4940e9b.tar.bz2
don't mention Python 2.2 (closes #25375)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/faq/extending.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index ade88ae..6e9e154 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -440,8 +440,8 @@ extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``).
Can I create an object class with some methods implemented in C and others in Python (e.g. through inheritance)?
----------------------------------------------------------------------------------------------------------------
-In Python 2.2, you can inherit from built-in classes such as :class:`int`,
-:class:`list`, :class:`dict`, etc.
+Yes, you can inherit from built-in classes such as :class:`int`, :class:`list`,
+:class:`dict`, etc.
The Boost Python Library (BPL, http://www.boost.org/libs/python/doc/index.html)
provides a way of doing this from C++ (i.e. you can inherit from an extension