File: __init__.py

package info (click to toggle)
python-stringtemplate3 3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,388 kB
  • sloc: python: 8,819; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (3)
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 *