Mercurial > lcfOS
view python/ppci/__init__.py @ 161:956f8e5ee48a
Improvements to code edit
author | Windel Bouwman |
---|---|
date | Sat, 09 Mar 2013 15:52:55 +0100 |
parents | b73bc14a3aa3 |
children | 6b2bec5653f1 |
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 from .errors import CompilerError, DiagnosticsManager from .errors import printError