Mercurial > lcfOS
comparison python/ppci/__init__.py @ 152:b73bc14a3aa3
Light coupling ide and c3 frontend
author | Windel Bouwman |
---|---|
date | Sat, 02 Mar 2013 09:56:12 +0100 |
parents | f2d980eef509 |
children | 6b2bec5653f1 |
comparison
equal
deleted
inserted
replaced
151:afc8c0207984 | 152:b73bc14a3aa3 |
---|---|
7 # Assert python version: | 7 # Assert python version: |
8 if sys.version_info.major != 3: | 8 if sys.version_info.major != 3: |
9 print("Needs to be run in python version 3.x") | 9 print("Needs to be run in python version 3.x") |
10 sys.exit(1) | 10 sys.exit(1) |
11 | 11 |
12 from .common import SourceLocation, SourceRange | |
13 from .errors import CompilerError, DiagnosticsManager | |
14 from .errors import printError | |
15 |