removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / davidg / pysource_reader / en.py
blob78a383ab3791e446c1c60cb022c380eba07d2dd8
1 #! /usr/bin/env python
3 """
4 :Author: David Goodger
5 :Contact: goodger@users.sourceforge.net
6 :Revision: $Revision$
7 :Date: $Date$
8 :Copyright: This module has been placed in the public domain.
10 """
12 interpreted = {
13 'package': nodes.package,
14 'module': nodes.module,
15 'class': nodes.inline_class,
16 'method': nodes.method,
17 'function': nodes.function,
18 'variable': nodes.variable,
19 'parameter': nodes.parameter,
20 'type': nodes.type,
21 'class attribute': nodes.class_attribute,
22 'classatt': nodes.class_attribute,
23 'instance attribute': nodes.instance_attribute,
24 'instanceatt': nodes.instance_attribute,
25 'module attribute': nodes.module_attribute,
26 'moduleatt': nodes.module_attribute,
27 'exception class': nodes.exception_class,
28 'exception': nodes.exception_class,
29 'warning class': nodes.warning_class,
30 'warning': nodes.warning_class,}
31 """Mapping of interpreted text role name to nodes.py class."""