summaryrefslogtreecommitdiff
path: root/docutils/docs
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2009-10-05 19:08:10 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2009-10-05 19:08:10 +0000
commitf35463a9d4df3ca7d8912a080dfcafdf80960819 (patch)
tree6eb1defbebde168c6cbfa916b31fae0967265572 /docutils/docs
parentc197a045b09702b817dcfaf11043364eb2663256 (diff)
downloaddocutils-f35463a9d4df3ca7d8912a080dfcafdf80960819.tar.gz
Drop extras/optparse.py and extras/textwrap.py (stdlib modules since 2.3).
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@6154 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/docs')
-rw-r--r--docutils/docs/dev/distributing.txt19
-rw-r--r--docutils/docs/peps/pep-0258.txt4
2 files changed, 4 insertions, 19 deletions
diff --git a/docutils/docs/dev/distributing.txt b/docutils/docs/dev/distributing.txt
index f50f6a7af..2bd83e3f2 100644
--- a/docutils/docs/dev/distributing.txt
+++ b/docutils/docs/dev/distributing.txt
@@ -28,27 +28,16 @@ Dependencies
Docutils has the following dependencies:
-* Python 2.1 or later is required. While the compiler package from
- the Tools/ directory of Python's source distribution must be
- installed for the test suite to pass with Python 2.1, the
- functionality available to end users should be available without the
- compiler package as well. So just use ">= Python 2.1" in the
+* Python 2.3 or later is required. Use ">= Python 2.3" in the
dependencies.
* Docutils may optionally make use of the PIL (`Python Imaging
Library`_). If PIL is present, it is automatically detected by
Docutils.
-* There are three files in the ``extras/`` directory of the Docutils
- distribution, ``optparse.py``, ``textwrap.py``, and ``roman.py``.
- For Python 2.1/2.2, all of them must be installed (into the
- ``site-packages/`` directory). Python 2.3 and later versions have
- ``textwrap`` and ``optparse`` included in the standard library, so
- only ``roman.py`` is required here; installing the other files won't
- hurt, though.
-
- These files are automatically installed by the setup script (when
- calling "python setup.py install").
+* There is one file in the ``extras/`` directory of the Docutils
+ distribution, ``roman.py``. It is automatically installed by the setup
+ script (when calling "python setup.py install").
.. _Python Imaging Library: http://www.pythonware.com/products/pil/
diff --git a/docutils/docs/peps/pep-0258.txt b/docutils/docs/peps/pep-0258.txt
index f9f87a296..cb87427f1 100644
--- a/docutils/docs/peps/pep-0258.txt
+++ b/docutils/docs/peps/pep-0258.txt
@@ -478,10 +478,6 @@ Docutils Package Structure
installed only if they're not already present in the Python
installation.
- - ``extras/optparse.py`` and ``extras/textwrap.py`` provide
- option parsing and command-line help; from Greg Ward's
- http://optik.sf.net/ project, included for convenience.
-
- ``extras/roman.py`` contains Roman numeral conversion routines.