1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
__all__ = ['language']
__version__ = "3.1"
## track probable issues like setting attribute that is not referenced.
# Set to true to make StringTemplate check your work as it evaluates
# templates. Problems are sent to error listener. Currently warns when
# you set attributes that are not used.
lintMode = False
from stringtemplate3.errors import *
from stringtemplate3.writers import *
from stringtemplate3.templates import *
from stringtemplate3.groups import *
from stringtemplate3.interfaces import *
from stringtemplate3.grouploaders import *
|