Mercurial > lcfOS
annotate python/c3/__init__.py @ 190:65dda7e7e8bd
Disable test with qt
author | Windel Bouwman |
---|---|
date | Sat, 25 May 2013 15:15:42 +0200 |
parents | 598d3888a11c |
children | de3a68f677a5 |
rev | line source |
---|---|
151 | 1 # Convenience imports: |
150 | 2 |
3 from .parser import Parser | |
4 from .semantics import Semantics | |
5 from .typecheck import TypeChecker | |
6 from .analyse import Analyzer | |
151 | 7 from .codegenerator import CodeGenerator |
163 | 8 from .astprinter import AstPrinter |
164 | 9 from .visitor import Visitor |
165 | 10 from .builder import Builder |
146 | 11 |