Django

Code

Changeset 3871

Show
Ignore:
Timestamp:
09/26/06 16:57:46 (2 years ago)
Author:
adrian
Message:

Added 'Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5?' to the FAQ

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r3695 r3871  
    314314.. _`SQLite 3`: http://www.sqlite.org/ 
    315315 
     316Do I lose anything by using Python 2.3 versus newer Python versions, such as Python 2.5? 
     317---------------------------------------------------------------------------------------- 
     318 
     319No. Django itself is guaranteed to work with any version of Python from 2.3 
     320and higher. 
     321 
     322If you use a Python version newer than 2.3, you will, of course, be able to 
     323take advantage of newer Python features in your own code, along with the speed 
     324improvements and other optimizations that have been made to the Python language 
     325itself. But the Django framework itself should work equally well on 2.3 as it 
     326does on 2.4 or 2.5. 
     327 
    316328Do I have to use mod_python? 
    317329----------------------------