Update of /cvsroot/docstring/dps/dps/writers
In directory usw-pr-cvs1:/tmp/cvs-serv21396/dps/dps/writers
Modified Files:
__init__.py
Log Message:
docstring mods
Index: __init__.py
===================================================================
RCS file: /cvsroot/docstring/dps/dps/writers/__init__.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** __init__.py 16 Mar 2002 05:53:52 -0000 1.7
--- __init__.py 28 Mar 2002 04:47:47 -0000 1.8
***************
*** 8,18 ****
:Copyright: This module has been placed in the public domain.
! This package contains DPS Writer modules.
"""
__docformat__ = 'reStructuredText'
- __all__ = ['Writer', 'get_writer_class']
-
import sys
--- 8,16 ----
:Copyright: This module has been placed in the public domain.
! This package contains Docutils Writer modules.
"""
__docformat__ = 'reStructuredText'
import sys
***************
*** 25,28 ****
--- 23,28 ----
"""
Abstract base class for docutils Writers.
+
+ Each writer module or package must export a subclass also called 'Writer'.
Call `write()` to process a document.
|