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 (14 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import annotations

from ..exceptions import CodegenError
from .cgbase import CodeGenerator, ModelRenderer
from .objectmodel import modelgen
from .python import codegen

__all__ = [
    'CodeGenerator',
    'ModelRenderer',
    'CodegenError',
    'codegen',
    'modelgen',
]