Mercurial > lcfOS
view python/ppci/__init__.py @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | 534b94b40aa8 |
children | 2c9768114877 |
line wrap: on
line source
# File to make this directory a package. import sys version = '0.0.1' # Assert python version: if sys.version_info.major != 3: print("Needs to be run in python version 3.x") sys.exit(1) from .common import SourceLocation, SourceRange, Token from .errors import CompilerError, DiagnosticsManager