annotate python/ppci/__init__.py @ 267:e7c8f7eb3f59
Added tag Working chain 1 for changeset 649884d9dc61
author |
Windel Bouwman |
date |
Mon, 12 Aug 2013 20:14:47 +0200 |
parents |
6b2bec5653f1 |
children |
534b94b40aa8 |
rev |
line source |
1
|
1 # File to make this directory a package.
|
|
2
|
106
|
3 import sys
|
|
4
|
99
|
5 version = '0.0.1'
|
|
6
|
106
|
7 # Assert python version:
|
|
8 if sys.version_info.major != 3:
|
|
9 print("Needs to be run in python version 3.x")
|
|
10 sys.exit(1)
|
|
11
|
191
|
12 from .common import SourceLocation, SourceRange, Token
|
152
|
13 from .errors import CompilerError, DiagnosticsManager
|
|
14 from .errors import printError
|
|
15
|