summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-11-13 03:41:08 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-11-13 03:41:08 +0000
commitde5e2881dcabcb0da591f164e03ba7bcb3564573 (patch)
tree1900149adfcd4db065e5e286d32f78984427195f
parent3ed3ef9cd717879837395e32d77ff3e5d01b418c (diff)
downloaddocutils-de5e2881dcabcb0da591f164e03ba7bcb3564573.tar.gz
removed notes about Py22 requirement (Docutils 0.5+ depends on Py22 anyway)
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4813 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--docutils/readers/python/__init__.py3
-rw-r--r--docutils/readers/python/moduleparser.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/docutils/readers/python/__init__.py b/docutils/readers/python/__init__.py
index d4b59599e..da8fb22d2 100644
--- a/docutils/readers/python/__init__.py
+++ b/docutils/readers/python/__init__.py
@@ -4,9 +4,6 @@
"""
This package contains the Python Source Reader modules.
-
-It requires Python 2.2 or higher (`moduleparser` depends on the
-`compiler` and `tokenize` modules).
"""
__docformat__ = 'reStructuredText'
diff --git a/docutils/readers/python/moduleparser.py b/docutils/readers/python/moduleparser.py
index 8854d0f95..5e63c9876 100644
--- a/docutils/readers/python/moduleparser.py
+++ b/docutils/readers/python/moduleparser.py
@@ -3,7 +3,7 @@
# Copyright: This module has been placed in the public domain.
"""
-Parser for Python modules. Requires Python 2.2 or higher.
+Parser for Python modules.
The `parse_module()` function takes a module's text and file name,
runs it through the module parser (using compiler.py and tokenize.py)