remove bogus link
[docutils.git] / test / local-reader.py
blob2259135fa5124fea162e4e5d2406c8eb5219e9be
1 # -*- coding: utf-8 -*-
2 # $Id$
3 # Authors: Engelbert Gruber <grubert@users.sourceforge.net>
4 # Toshio Kuratomi <toshio@fedoraproject.org>
5 # Copyright: This module is put into the public domain.
7 """
8 mini-reader to test get_reader_class with local reader
9 """
11 import docutils
12 from docutils import readers
14 class Reader(readers.Reader):
16 supported = ('dummy',)
17 """Formats this reader supports."""
19 document = None
20 """A document tree."""