diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2006-11-13 03:41:08 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2006-11-13 03:41:08 +0000 |
| commit | 79f991589720ff5ea69b8f32499ff196d12eb662 (patch) | |
| tree | d5d9ebac4bc1a48e70e4cc1a435ea8776a7619ef /readers/python | |
| parent | 9cf424240dc2e31bed792596835d5cf1a2d03651 (diff) | |
| download | docutils-79f991589720ff5ea69b8f32499ff196d12eb662.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/docutils@4813 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'readers/python')
| -rw-r--r-- | readers/python/__init__.py | 3 | ||||
| -rw-r--r-- | readers/python/moduleparser.py | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/readers/python/__init__.py b/readers/python/__init__.py index d4b59599e..da8fb22d2 100644 --- a/readers/python/__init__.py +++ b/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/readers/python/moduleparser.py b/readers/python/moduleparser.py index 8854d0f95..5e63c9876 100644 --- a/readers/python/moduleparser.py +++ b/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) |
