From 20f2f5b2798187de0ffcd52ae7649da5dc67a3c7 Mon Sep 17 00:00:00 2001
From: Benjamin Peterson <benjamin@python.org>
Date: Sat, 10 Oct 2015 23:23:55 -0700
Subject: [PATCH] don't mention Python 2.2 (closes #25375)

---
 Doc/faq/extending.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index ae0d905ec46..7bb4dc2e608 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -443,8 +443,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
-- 
2.30.9