File: __init__.py

package info (click to toggle)
python-tatsu 5.15.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 904 kB
  • sloc: python: 10,128; makefile: 54
file content (21 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from __future__ import annotations

from ._config import __toolname__, __version__
from .tool import (  # pylint: disable=W0622
    compile,
    main,
    parse,
    to_python_model,
    to_python_sourcecode,
)

assert __version__
assert __toolname__
assert bool(compile)
assert bool(parse)
assert bool(to_python_sourcecode)
assert bool(to_python_model)


if __name__ == '__main__':
    main()