Mercurial > lcfOS
view python/ppci/__init__.py @ 350:2b02bd286fe9
Fixed A9 hello worle
author | Windel Bouwman |
---|---|
date | Sat, 08 Mar 2014 16:29:03 +0100 |
parents | d1ecc493384e |
children | 173e20a47fda |
line wrap: on
line source
# File to make this directory a package. import sys import os 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 .common import CompilerError, DiagnosticsManager logformat='%(asctime)s|%(levelname)s|%(name)s|%(message)s' def same_dir(full_path, filename): return os.path.join(os.path.dirname(os.path.abspath(full_path)), filename)