Aestate
final.py
Go to the documentation of this file.
1 # -*- utf-8 -*-
2 from aestate.work.xmlhandler.nodes import SelectNode, \
3  UpdateNode, IfNode, ElseNode, SwitchNode, IncludeNode
4 
5 XML_IGNORE_NODES = ['#text']
6 XML_KEY = {
7  'select': SelectNode,
8  'update': UpdateNode,
9  'if': IfNode,
10  'else': ElseNode,
11  'switch': SwitchNode,
12  'include': IncludeNode,
13 }
aestate.work.xmlhandler.nodes
Definition: nodes.py:1