summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2009-10-09 07:17:59 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2009-10-09 07:17:59 +0000
commit8f96a1a38d64ee48886346bccc06c0557977cc8f (patch)
treeb1375dc36805ec7019db17326c09727bec2cbfb8 /docs/dev
parentc0d13556efb3d96adda1182e5a18323d0bcd239e (diff)
downloaddocutils-8f96a1a38d64ee48886346bccc06c0557977cc8f.tar.gz
One more cleanup as we require Python 2.3 now.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6159 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/testing.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/docs/dev/testing.txt b/docs/dev/testing.txt
index 78733412b..396d8ae88 100644
--- a/docs/dev/testing.txt
+++ b/docs/dev/testing.txt
@@ -33,25 +33,22 @@ be sure that you haven't broken anything. From a shell::
Python Versions
===============
-The Docutils 0.5 release supports Python 2.2 or later, with some features
-only working (and being tested) with Python >= 2.3. Therefore, you should
-actually have Pythons 2.2, 2.3, as well as the latest Python (2.6 at the time
+The Docutils 0.6 release supports Python 2.3 or later. Therefore, you should
+actually have Pythons 2.3, as well as the latest Python (2.6 at the time
of this writing) installed and always run the tests on all of them. (A good
way to do that is to always run the test suite through a short script that
runs ``alltests.py`` under each version of Python.) If you can't afford
-intalling 3 or more Python versions, the edge cases (2.2, 2.3, and 2.6) should
+installing 3 or more Python versions, the edge cases (2.3, and 2.6) should
cover most of it.
Good resources covering the differences between Python versions:
-* `What's New in Python 2.2`__
* `What's New in Python 2.3`__
* `What's New in Python 2.4`__
* `What's New in Python 2.5`__
* `What's New in Python 2.6`__
* `PEP 290 - Code Migration and Modernization`__
-__ http://www.python.org/doc/2.2.3/whatsnew/whatsnew22.html
__ http://www.python.org/doc/2.3.5/whatsnew/whatsnew23.html
__ http://www.python.org/doc/2.4.4/whatsnew/whatsnew24.html
__ http://www.python.org/doc/2.5.2/whatsnew/whatsnew25.html