diff python/c3/__init__.py @ 293:6aa721e7b10b

Try to improve build sequence
author Windel Bouwman
date Thu, 28 Nov 2013 20:39:37 +0100
parents a747a45dcd78
children
line wrap: on
line diff
--- a/python/c3/__init__.py	Wed Nov 27 08:06:42 2013 +0100
+++ b/python/c3/__init__.py	Thu Nov 28 20:39:37 2013 +0100
@@ -1,11 +1,8 @@
+""" This is the C3 language front end. """
 
-"""
-This is the C3 language front end.
-"""
-
-# Convenience imports:
 
 from .parser import Parser
+from .lexer import Lexer
 from .analyse import Analyzer, TypeChecker
 from .codegenerator import CodeGenerator
 from .visitor import Visitor, AstPrinter