buildframework/helium/external/python/lib/common/docutils-0.5-py2.5.egg/docutils/writers/null.py
changeset 179 d8ac696cc51f
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 # $Id: null.py 4564 2006-05-21 20:44:42Z wiemann $
       
     2 # Author: David Goodger <goodger@python.org>
       
     3 # Copyright: This module has been placed in the public domain.
       
     4 
       
     5 """
       
     6 A do-nothing Writer.
       
     7 """
       
     8 
       
     9 from docutils import writers
       
    10 
       
    11 
       
    12 class Writer(writers.UnfilteredWriter):
       
    13 
       
    14     supported = ('null',)
       
    15     """Formats this writer supports."""
       
    16 
       
    17     config_section = 'null writer'
       
    18     config_section_dependencies = ('writers',)
       
    19 
       
    20     def translate(self):
       
    21         pass