summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-10-09 00:51:53 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-10-09 00:51:53 +0000
commitab518fb4dc8c3670292031bc37ffefd011ab57cf (patch)
treebacb1a1c3d35e7fbcac571c7e6ca12efb40b26fb
parent14cb4f71be54023d6b12e1319fb364098ef3755c (diff)
downloaddocutils-ab518fb4dc8c3670292031bc37ffefd011ab57cf.tar.gz
changed docstring field lists into comments
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@778 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--docutils/docutils/core.py12
-rw-r--r--docutils/docutils/frontend.py12
-rw-r--r--docutils/docutils/io.py12
-rw-r--r--docutils/docutils/languages/__init__.py12
-rw-r--r--docutils/docutils/languages/de.py12
-rw-r--r--docutils/docutils/languages/en.py12
-rw-r--r--docutils/docutils/languages/sv.py12
-rw-r--r--docutils/docutils/parsers/__init__.py12
-rw-r--r--docutils/docutils/parsers/rst/__init__.py15
-rw-r--r--docutils/docutils/parsers/rst/languages/__init__.py12
-rw-r--r--docutils/docutils/parsers/rst/languages/en.py12
-rw-r--r--docutils/docutils/parsers/rst/languages/sv.py12
-rw-r--r--docutils/docutils/readers/pep.py12
-rw-r--r--docutils/docutils/readers/standalone.py12
-rw-r--r--docutils/docutils/writers/__init__.py12
-rw-r--r--docutils/docutils/writers/docutils_xml.py12
-rw-r--r--docutils/docutils/writers/pseudoxml.py12
-rw-r--r--docutils/test/DocutilsTestSupport.py12
-rwxr-xr-xdocutils/test/alltests.py12
-rw-r--r--docutils/test/package_unittest.py12
-rwxr-xr-xdocutils/test/test_nodes.py12
-rw-r--r--docutils/test/test_parsers/test_rst/test_SimpleTableParser.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_TableParser.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_block_quotes.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_bullet_lists.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_citations.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_comments.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_doctest_blocks.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_enumerated_lists.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_field_lists.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_footnotes.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_functions.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_inline_markup.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_option_lists.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_outdenting.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_paragraphs.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_substitutions.py12
-rwxr-xr-xdocutils/test/test_parsers/test_rst/test_targets.py12
-rw-r--r--docutils/test/test_readers/test_pep/test_inline_markup.py12
-rw-r--r--docutils/test/test_readers/test_pep/test_rfc2822.py12
-rwxr-xr-xdocutils/test/test_utils.py12
41 files changed, 231 insertions, 264 deletions
diff --git a/docutils/docutils/core.py b/docutils/docutils/core.py
index 8354d8393..6eee3829e 100644
--- a/docutils/docutils/core.py
+++ b/docutils/docutils/core.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Calling the `publish` convenience function (or instantiating a
`Publisher` object) with component names will result in default
behavior. For custom behavior (setting component options), create
diff --git a/docutils/docutils/frontend.py b/docutils/docutils/frontend.py
index 24cf7735c..f99c3f667 100644
--- a/docutils/docutils/frontend.py
+++ b/docutils/docutils/frontend.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Command-line and common processing for Docutils front-end tools.
Exports the following classes:
diff --git a/docutils/docutils/io.py b/docutils/docutils/io.py
index db156b9a0..6f7c138bd 100644
--- a/docutils/docutils/io.py
+++ b/docutils/docutils/io.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
I/O classes provide a uniform API for low-level input and output. Subclasses
will exist for a variety of input/output mechanisms.
"""
diff --git a/docutils/docutils/languages/__init__.py b/docutils/docutils/languages/__init__.py
index bdddb5697..eb241a02e 100644
--- a/docutils/docutils/languages/__init__.py
+++ b/docutils/docutils/languages/__init__.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
This package contains modules for language-dependent features of Docutils.
"""
diff --git a/docutils/docutils/languages/de.py b/docutils/docutils/languages/de.py
index 8c512dc14..b6068da2a 100644
--- a/docutils/docutils/languages/de.py
+++ b/docutils/docutils/languages/de.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger; Gunnar Schwant
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger; Gunnar Schwant
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
German language mappings for language-dependent features of Docutils.
"""
diff --git a/docutils/docutils/languages/en.py b/docutils/docutils/languages/en.py
index fb320511d..4ca94d632 100644
--- a/docutils/docutils/languages/en.py
+++ b/docutils/docutils/languages/en.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
English-language mappings for language-dependent features of Docutils.
"""
diff --git a/docutils/docutils/languages/sv.py b/docutils/docutils/languages/sv.py
index f2019c16e..97fbcd470 100644
--- a/docutils/docutils/languages/sv.py
+++ b/docutils/docutils/languages/sv.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: Adam Chodorowski
+# Contact: chodorowski@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: Adam Chodorowski
-:Contact: chodorowski@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Swedish language mappings for language-dependent features of Docutils.
"""
diff --git a/docutils/docutils/parsers/__init__.py b/docutils/docutils/parsers/__init__.py
index 0294da0f8..b5717e0d3 100644
--- a/docutils/docutils/parsers/__init__.py
+++ b/docutils/docutils/parsers/__init__.py
@@ -1,11 +1,11 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+This package contains Docutils parser modules.
"""
__docformat__ = 'reStructuredText'
diff --git a/docutils/docutils/parsers/rst/__init__.py b/docutils/docutils/parsers/rst/__init__.py
index 4bc8970c4..1a8b26c72 100644
--- a/docutils/docutils/parsers/rst/__init__.py
+++ b/docutils/docutils/parsers/rst/__init__.py
@@ -1,13 +1,12 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
-This is ``docutils.parsers.rst`` package. It exports a single class, `Parser`.
+This is ``docutils.parsers.rst`` package. It exports a single class, `Parser`,
+the reStructuredText parser.
Usage
=====
diff --git a/docutils/docutils/parsers/rst/languages/__init__.py b/docutils/docutils/parsers/rst/languages/__init__.py
index 4a5441e9e..8f78fc481 100644
--- a/docutils/docutils/parsers/rst/languages/__init__.py
+++ b/docutils/docutils/parsers/rst/languages/__init__.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
This package contains modules for language-dependent features of
reStructuredText.
"""
diff --git a/docutils/docutils/parsers/rst/languages/en.py b/docutils/docutils/parsers/rst/languages/en.py
index 34c4c101a..f162c7a9a 100644
--- a/docutils/docutils/parsers/rst/languages/en.py
+++ b/docutils/docutils/parsers/rst/languages/en.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
English-language mappings for language-dependent features of
reStructuredText.
"""
diff --git a/docutils/docutils/parsers/rst/languages/sv.py b/docutils/docutils/parsers/rst/languages/sv.py
index 2d45a5222..b68040cf3 100644
--- a/docutils/docutils/parsers/rst/languages/sv.py
+++ b/docutils/docutils/parsers/rst/languages/sv.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: Adam Chodorowski
+# Contact: chodorowski@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: Adam Chodorowski
-:Contact: chodorowski@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Swedish language mappings for language-dependent features of reStructuredText.
"""
diff --git a/docutils/docutils/readers/pep.py b/docutils/docutils/readers/pep.py
index b051d63b9..b1b514886 100644
--- a/docutils/docutils/readers/pep.py
+++ b/docutils/docutils/readers/pep.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Python Enhancement Proposal (PEP) Reader.
"""
diff --git a/docutils/docutils/readers/standalone.py b/docutils/docutils/readers/standalone.py
index 24a8074e7..0eca2e7da 100644
--- a/docutils/docutils/readers/standalone.py
+++ b/docutils/docutils/readers/standalone.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Standalone file Reader for the reStructuredText markup syntax.
"""
diff --git a/docutils/docutils/writers/__init__.py b/docutils/docutils/writers/__init__.py
index 4dabe2241..42bdeb8ce 100644
--- a/docutils/docutils/writers/__init__.py
+++ b/docutils/docutils/writers/__init__.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
This package contains Docutils Writer modules.
"""
diff --git a/docutils/docutils/writers/docutils_xml.py b/docutils/docutils/writers/docutils_xml.py
index e005c7861..14b218dcd 100644
--- a/docutils/docutils/writers/docutils_xml.py
+++ b/docutils/docutils/writers/docutils_xml.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Simple internal document tree Writer, writes Docutils XML.
"""
diff --git a/docutils/docutils/writers/pseudoxml.py b/docutils/docutils/writers/pseudoxml.py
index c1ba29347..02dde58f3 100644
--- a/docutils/docutils/writers/pseudoxml.py
+++ b/docutils/docutils/writers/pseudoxml.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Simple internal document tree Writer, writes indented pseudo-XML.
"""
diff --git a/docutils/test/DocutilsTestSupport.py b/docutils/test/DocutilsTestSupport.py
index 4f1a4c76b..6e9c804e5 100644
--- a/docutils/test/DocutilsTestSupport.py
+++ b/docutils/test/DocutilsTestSupport.py
@@ -1,12 +1,10 @@
-#! /usr/bin/env python
+# Authors: David Goodger; Garth Kidd
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
"""
-:Authors: David Goodger; Garth Kidd
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
Exports the following:
:Modules:
diff --git a/docutils/test/alltests.py b/docutils/test/alltests.py
index ed16f095d..e5b2e57bc 100755
--- a/docutils/test/alltests.py
+++ b/docutils/test/alltests.py
@@ -1,12 +1,12 @@
#!/usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
All modules named 'test_*.py' in the current directory, and recursively in
subdirectories (packages) called 'test_*', are loaded and test suites within
are run.
diff --git a/docutils/test/package_unittest.py b/docutils/test/package_unittest.py
index ad9b33aba..019d6fb38 100644
--- a/docutils/test/package_unittest.py
+++ b/docutils/test/package_unittest.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: Garth Kidd
-:Contact: garth@deadlybloodyserious.com
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: Garth Kidd
+# Contact: garth@deadlybloodyserious.com
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
This module extends unittest.py with `loadTestModules()`, by loading multiple
test modules from a directory. Optionally, test packages are also loaded,
recursively.
diff --git a/docutils/test/test_nodes.py b/docutils/test/test_nodes.py
index 3766a695d..a33607c2c 100755
--- a/docutils/test/test_nodes.py
+++ b/docutils/test/test_nodes.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Test module for nodes.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_SimpleTableParser.py b/docutils/test/test_parsers/test_rst/test_SimpleTableParser.py
index dca3798c0..3bb669db1 100644
--- a/docutils/test/test_parsers/test_rst/test_SimpleTableParser.py
+++ b/docutils/test/test_parsers/test_rst/test_SimpleTableParser.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_TableParser.py b/docutils/test/test_parsers/test_rst/test_TableParser.py
index daba2c1b0..08b13fc8c 100755
--- a/docutils/test/test_parsers/test_rst/test_TableParser.py
+++ b/docutils/test/test_parsers/test_rst/test_TableParser.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_block_quotes.py b/docutils/test/test_parsers/test_rst/test_block_quotes.py
index 4488415d1..86256cc56 100755
--- a/docutils/test/test_parsers/test_rst/test_block_quotes.py
+++ b/docutils/test/test_parsers/test_rst/test_block_quotes.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_bullet_lists.py b/docutils/test/test_parsers/test_rst/test_bullet_lists.py
index ee64a2c1d..12ede6cf1 100755
--- a/docutils/test/test_parsers/test_rst/test_bullet_lists.py
+++ b/docutils/test/test_parsers/test_rst/test_bullet_lists.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_citations.py b/docutils/test/test_parsers/test_rst/test_citations.py
index 508a5f9a0..a92e151a4 100755
--- a/docutils/test/test_parsers/test_rst/test_citations.py
+++ b/docutils/test/test_parsers/test_rst/test_citations.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_comments.py b/docutils/test/test_parsers/test_rst/test_comments.py
index 193a6cfc1..a90135ec5 100755
--- a/docutils/test/test_parsers/test_rst/test_comments.py
+++ b/docutils/test/test_parsers/test_rst/test_comments.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_doctest_blocks.py b/docutils/test/test_parsers/test_rst/test_doctest_blocks.py
index 9e2f07655..c9637c6d6 100755
--- a/docutils/test/test_parsers/test_rst/test_doctest_blocks.py
+++ b/docutils/test/test_parsers/test_rst/test_doctest_blocks.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_enumerated_lists.py b/docutils/test/test_parsers/test_rst/test_enumerated_lists.py
index 9f4f97cce..b89691516 100755
--- a/docutils/test/test_parsers/test_rst/test_enumerated_lists.py
+++ b/docutils/test/test_parsers/test_rst/test_enumerated_lists.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_field_lists.py b/docutils/test/test_parsers/test_rst/test_field_lists.py
index 6001d0771..4bdf07527 100755
--- a/docutils/test/test_parsers/test_rst/test_field_lists.py
+++ b/docutils/test/test_parsers/test_rst/test_field_lists.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_footnotes.py b/docutils/test/test_parsers/test_rst/test_footnotes.py
index f58be22ea..00e5c1f5d 100755
--- a/docutils/test/test_parsers/test_rst/test_footnotes.py
+++ b/docutils/test/test_parsers/test_rst/test_footnotes.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_functions.py b/docutils/test/test_parsers/test_rst/test_functions.py
index 2cf7c6a7e..e6694b2c5 100755
--- a/docutils/test/test_parsers/test_rst/test_functions.py
+++ b/docutils/test/test_parsers/test_rst/test_functions.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_inline_markup.py b/docutils/test/test_parsers/test_rst/test_inline_markup.py
index 2ee79a4b5..5c45c3c27 100755
--- a/docutils/test/test_parsers/test_rst/test_inline_markup.py
+++ b/docutils/test/test_parsers/test_rst/test_inline_markup.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_option_lists.py b/docutils/test/test_parsers/test_rst/test_option_lists.py
index ba5e3ad12..e7f17f615 100755
--- a/docutils/test/test_parsers/test_rst/test_option_lists.py
+++ b/docutils/test/test_parsers/test_rst/test_option_lists.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_outdenting.py b/docutils/test/test_parsers/test_rst/test_outdenting.py
index e728ebbba..1522b7f30 100755
--- a/docutils/test/test_parsers/test_rst/test_outdenting.py
+++ b/docutils/test/test_parsers/test_rst/test_outdenting.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_paragraphs.py b/docutils/test/test_parsers/test_rst/test_paragraphs.py
index 150387f75..8ec8cbbc5 100755
--- a/docutils/test/test_parsers/test_rst/test_paragraphs.py
+++ b/docutils/test/test_parsers/test_rst/test_paragraphs.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_substitutions.py b/docutils/test/test_parsers/test_rst/test_substitutions.py
index b8f794ffe..7a1c9c7a1 100755
--- a/docutils/test/test_parsers/test_rst/test_substitutions.py
+++ b/docutils/test/test_parsers/test_rst/test_substitutions.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_parsers/test_rst/test_targets.py b/docutils/test/test_parsers/test_rst/test_targets.py
index 612db9290..afa7d6fbb 100755
--- a/docutils/test/test_parsers/test_rst/test_targets.py
+++ b/docutils/test/test_parsers/test_rst/test_targets.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for states.py.
"""
diff --git a/docutils/test/test_readers/test_pep/test_inline_markup.py b/docutils/test/test_readers/test_pep/test_inline_markup.py
index 2096ee969..aed06e770 100644
--- a/docutils/test/test_readers/test_pep/test_inline_markup.py
+++ b/docutils/test/test_readers/test_pep/test_inline_markup.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for inline markup in PEPs (readers/pep.py).
"""
diff --git a/docutils/test/test_readers/test_pep/test_rfc2822.py b/docutils/test/test_readers/test_pep/test_rfc2822.py
index 974d2c54b..13d1c96ea 100644
--- a/docutils/test/test_readers/test_pep/test_rfc2822.py
+++ b/docutils/test/test_readers/test_pep/test_rfc2822.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Tests for RFC-2822 headers in PEPs (readers/pep.py).
"""
diff --git a/docutils/test/test_utils.py b/docutils/test/test_utils.py
index b2771f25c..06da8c0e2 100755
--- a/docutils/test/test_utils.py
+++ b/docutils/test/test_utils.py
@@ -1,12 +1,12 @@
#! /usr/bin/env python
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
+# Author: David Goodger
+# Contact: goodger@users.sourceforge.net
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+"""
Test module for utils.py.
"""