File: __init__.py

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

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

__all__ = [
    '__toolname__',
    '__version__',
    "compile",
    "main",
    "parse",
    "to_python_model",
    "to_python_sourcecode",
]