summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-09-26 21:57:46 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-09-26 21:57:46 +0000
commitad144467808bf63a5712e668bebc66d5c39f4946 (patch)
treeaaa1f642f59e8e542066982d680b0a12be546560 /docs
parent8b216eb8656bfd83b34243189293f6433fdc2b80 (diff)
Added 'Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5?' to the FAQ
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3871 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/faq.txt b/docs/faq.txt
index 204c69244d..e1f344c811 100644
--- a/docs/faq.txt
+++ b/docs/faq.txt
@@ -313,6 +313,18 @@ PostgreSQL fans, and MySQL_ and `SQLite 3`_ are also supported.
.. _MySQL: http://www.mysql.com/
.. _`SQLite 3`: http://www.sqlite.org/
+Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5?
+----------------------------------------------------------------------------------------
+
+No. Django itself is guaranteed to work with any version of Python from 2.3
+and higher.
+
+If you use a Python version newer than 2.3, you will, of course, be able to
+take advantage of newer Python features in your own code, along with the speed
+improvements and other optimizations that have been made to the Python language
+itself. But the Django framework itself should work equally well on 2.3 as it
+does on 2.4 or 2.5.
+
Do I have to use mod_python?
----------------------------