set version 0.22b.dev
[docutils.git] / docutils / test / local-reader.py
blob9698c2ec5f6542ca3f460977eca128e5198a17cf
1 # $Id$
2 # Authors: Engelbert Gruber <grubert@users.sourceforge.net>
3 # Toshio Kuratomi <toshio@fedoraproject.org>
4 # Copyright: This module is put into the public domain.
6 """
7 mini-reader to test get_reader_class with local reader
8 """
10 from docutils import readers
13 class Reader(readers.Reader):
15 supported = ('dummy',)
16 """Formats this reader supports."""
18 document = None
19 """A document tree."""